Description
Gets or sets whether to show the frustum of the
Projection.
Property type
Read-write property
Syntax
[Visual Basic .NET] |
---|
Public Property ShowFrustum() As Boolean
|
[C#] |
---|
public bool ShowFrustum {get; set;}
|
[Managed C++] |
---|
public: __property bool get_ShowFrustum(); public: __property void set_ShowFrustum(
bool
);
|
[Unmanaged C++] |
---|
public: HRESULT get_ShowFrustum(
VARIANT_BOOL * pRetVal
);
public: HRESULT put_ShowFrustum(
VARIANT_BOOL ShowFrustum
);
|
[Java] |
---|
public bool getShowFrustum();
public void setShowFrustum(
bool
);
|
[Python - STK API ] |
---|
@property
def ShowFrustum(self) -> bool:
@ShowFrustum.setter
def ShowFrustum(self, ShowFrustum:bool) -> None:
|
See Also