Description
The complete name of the plugin.
Property type
Read-write property
Syntax
| [Visual Basic .NET] |
|---|
Public Property PluginName() As String
|
| [C#] |
|---|
public string PluginName {get; set;}
|
| [Managed C++] |
|---|
public: __property String __gc ^ get_PluginName(); public: __property void set_PluginName(
String __gc ^
);
|
| [Unmanaged C++] |
|---|
public: HRESULT get_PluginName(
BSTR * pVal
);
public: HRESULT put_PluginName(
BSTR PluginName
);
|
| [Java] |
|---|
public String getPluginName();
public void setPluginName(
String
);
|
| [Python - STK API] |
|---|
@property
def PluginName(self) -> str:
@PluginName.setter
def PluginName(self, PluginName:str) -> None:
|
See Also