Description
The name of the payload station.
Property type
Read-write property
Syntax
| [Visual Basic .NET] |
|---|
Public Property Name() As String
|
| [C#] |
|---|
public string Name {get; set;}
|
| [Managed C++] |
|---|
public: __property String __gc ^ get_Name(); public: __property void set_Name(
String __gc ^
);
|
| [Unmanaged C++] |
|---|
public: HRESULT get_Name(
BSTR * pRetVal
);
public: HRESULT put_Name(
BSTR newVal
);
|
| [Java] |
|---|
public String getName();
public void setName(
String
);
|
| [Python - STK API] |
|---|
@property
def Name(self) -> str:
@Name.setter
def Name(self, newVal:str) -> None:
|
See Also