Description
Gets or sets the X position of the overlay relative to its parent. The unit in which the position is defined is specified by the
X Unit property. The position is measured horizontally from the
Origin, which is, by default, the lower-left corner.
Property type
Read-write property
Syntax
[Visual Basic .NET] |
---|
Public Property X() As Double
|
[C#] |
---|
public double X {get; set;}
|
[Managed C++] |
---|
public: __property double get_X(); public: __property void set_X(
double
);
|
[Unmanaged C++] |
---|
public: HRESULT get_X(
double * pRetVal
);
public: HRESULT put_X(
double X
);
|
[Java] |
---|
public double getX();
public void setX(
double
);
|
[Python - STK API ] |
---|
@property
def X(self) -> float:
@X.setter
def X(self, X:float) -> None:
|
See Also