Description
Gets or sets whether the overlay will be flipped along its X axis.
Property type
Read-write property
Syntax
[Visual Basic .NET] |
---|
Public Property FlipX() As Boolean
|
[C#] |
---|
public bool FlipX {get; set;}
|
[Managed C++] |
---|
public: __property bool get_FlipX(); public: __property void set_FlipX(
bool
);
|
[Unmanaged C++] |
---|
public: HRESULT get_FlipX(
VARIANT_BOOL * pRetVal
);
public: HRESULT put_FlipX(
VARIANT_BOOL FlipX
);
|
[Java] |
---|
public bool getFlipX();
public void setFlipX(
bool
);
|
[Python - STK API] |
---|
@property
def FlipX(self) -> bool:
@FlipX.setter
def FlipX(self, FlipX:bool) -> None:
|
See Also