Description
Show/hide grid in 3D Graphics window.
Property type
Read-write property
Syntax
[Visual Basic .NET] |
---|
Public Property ShowGrid() As Boolean
|
[C#] |
---|
public bool ShowGrid {get; set;}
|
[Managed C++] |
---|
public: __property bool get_ShowGrid(); public: __property void set_ShowGrid(
bool
);
|
[Unmanaged C++] |
---|
public: HRESULT get_ShowGrid(
VARIANT_BOOL * pShow
);
public: HRESULT put_ShowGrid(
VARIANT_BOOL pShow
);
|
[Java] |
---|
public bool getShowGrid();
public void setShowGrid(
bool
);
|
[Python - STK API] |
---|
@property
def ShowGrid(self) -> bool:
@ShowGrid.setter
def ShowGrid(self, pShow:bool) -> None:
|
See Also