Description
The name assigned to the B-Plane.
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 * pVal
);
public: HRESULT put_Name(
BSTR Name
);
|
[Java] |
---|
public String getName();
public void setName(
String
);
|
[Python - STK API] |
---|
@property
def Name(self) -> str:
@Name.setter
def Name(self, Name:str) -> None:
|
See Also