Description
Opt whether to make the MTO static.
Property type
Read-write property
Syntax
[Visual Basic .NET] |
---|
Public Property IsStatic() As Boolean
|
[C#] |
---|
public bool IsStatic {get; set;}
|
[Managed C++] |
---|
public: __property bool get_IsStatic(); public: __property void set_IsStatic(
bool
);
|
[Unmanaged C++] |
---|
public: HRESULT get_IsStatic(
VARIANT_BOOL * pVal
);
public: HRESULT put_IsStatic(
VARIANT_BOOL IsStatic
);
|
[Java] |
---|
public bool getIsStatic();
public void setIsStatic(
bool
);
|
[Python - STK API] |
---|
@property
def IsStatic(self) -> bool:
@IsStatic.setter
def IsStatic(self, IsStatic:bool) -> None:
|
See Also