Description
Opt whether to take SRP into account.
Property type
Read-write property
Syntax
[Visual Basic .NET] |
---|
Public Property Use() As Boolean
|
[C#] |
---|
public bool Use {get; set;}
|
[Managed C++] |
---|
public: __property bool get_Use(); public: __property void set_Use(
bool
);
|
[Unmanaged C++] |
---|
public: HRESULT get_Use(
VARIANT_BOOL * pVal
);
public: HRESULT put_Use(
VARIANT_BOOL Use
);
|
[Java] |
---|
public bool getUse();
public void setUse(
bool
);
|
[Python - STK API] |
---|
@property
def Use(self) -> bool:
@Use.setter
def Use(self, Use:bool) -> None:
|
See Also