(int x)
| 1089 | /// |
| 1090 | /// - `x`: the current x coordinate of the components origin |
| 1091 | public void setX(int x) { |
| 1092 | bounds.setX(x); |
| 1093 | if (Form.activePeerCount > 0) { |
| 1094 | onParentPositionChange(); |
| 1095 | } |
| 1096 | } |
| 1097 | |
| 1098 | /// Gets the x-coordinate of the outer bounds of this component. The outer bounds are formed |
| 1099 | /// by the bounds outside the margin of the component. (i.e. `x - leftMargin`). |