Description
Opt whether to use a plugin.
Property type
Read-write property
Syntax
| [Visual Basic .NET] |
|---|
Public Property UsePlugin() As Boolean
|
| [C#] |
|---|
public bool UsePlugin {get; set;}
|
| [Managed C++] |
|---|
public: __property bool get_UsePlugin(); public: __property void set_UsePlugin(
bool
);
|
| [Unmanaged C++] |
|---|
public: HRESULT get_UsePlugin(
VARIANT_BOOL * pVal
);
public: HRESULT put_UsePlugin(
VARIANT_BOOL UsePlugin
);
|
| [Java] |
|---|
public bool getUsePlugin();
public void setUsePlugin(
bool
);
|
| [Python - STK API] |
|---|
@property
def UsePlugin(self) -> bool:
@UsePlugin.setter
def UsePlugin(self, UsePlugin:bool) -> None:
|
See Also