Description
Integer value of the enumeration
Property type
Read-write property
Syntax
| [Visual Basic .NET] |
|---|
Public Property Value() As Integer
|
| [C#] |
|---|
public int Value {get; set;}
|
| [Managed C++] |
|---|
public: __property int get_Value(); public: __property void set_Value(
int
);
|
| [Unmanaged C++] |
|---|
public: HRESULT get_Value(
long * pVal
);
public: HRESULT put_Value(
long InVal
);
|
| [Java] |
|---|
public int getValue();
public void setValue(
int
);
|
| [Python - STK API] |
|---|
@property
def Value(self) -> int:
@Value.setter
def Value(self, InVal:int) -> None:
|
See Also