Description
The name of the attribute.
Property type
Read-write property
Syntax
| [Visual Basic .NET] |
|---|
Public Property Attribute() As String
|
| [C#] |
|---|
public string Attribute {get; set;}
|
| [Managed C++] |
|---|
public: __property String __gc ^ get_Attribute(); public: __property void set_Attribute(
String __gc ^
);
|
| [Unmanaged C++] |
|---|
public: HRESULT get_Attribute(
BSTR * pVal
);
public: HRESULT put_Attribute(
BSTR InVal
);
|
| [Java] |
|---|
public String getAttribute();
public void setAttribute(
String
);
|
| [Python - STK API] |
|---|
@property
def Attribute(self) -> str:
@Attribute.setter
def Attribute(self, InVal:str) -> None:
|
See Also