(int y)
| 1132 | /// |
| 1133 | /// - `y`: the current y coordinate of the components origin |
| 1134 | public void setY(int y) { |
| 1135 | bounds.setY(y); |
| 1136 | if (Form.activePeerCount > 0) { |
| 1137 | onParentPositionChange(); |
| 1138 | } |
| 1139 | } |
| 1140 | |
| 1141 | /// Gets the Y-coordinate of the outer bounds of this component. The outer bounds are formed |
| 1142 | /// by the bound of the margin of the component. i.e. `y - leftMargin`. |