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