Description
Rotation about the X axis. Uses Angle Dimension.
Property type
Read-write property
Syntax
| [Visual Basic .NET] |
|---|
Public Property X() As System.Object
|
| [C#] |
|---|
public System.Object X {get; set;}
|
| [Managed C++] |
|---|
public: __property VARIANT get_X(); public: __property void set_X(
VARIANT
);
|
| [Unmanaged C++] |
|---|
public: HRESULT get_X(
VARIANT * pX
);
public: HRESULT put_X(
VARIANT vX
);
|
| [Java] |
|---|
public AgVariant getX();
public void setX(
AgVariant
);
|
| [Python - STK API] |
|---|
@property
def X(self) -> typing.Any:
@X.setter
def X(self, vX:typing.Any) -> None:
|
See Also