Description
Gets or sets the function power.
Property type
Read-write property
Syntax
| [Visual Basic .NET] |
|---|
Public Property FunctionPower() As Integer
|
| [C#] |
|---|
public int FunctionPower {get; set;}
|
| [Managed C++] |
|---|
public: __property int get_FunctionPower(); public: __property void set_FunctionPower(
int
);
|
| [Unmanaged C++] |
|---|
public: HRESULT get_FunctionPower(
int * pVal
);
public: HRESULT put_FunctionPower(
int val
);
|
| [Java] |
|---|
public Integer getFunctionPower();
public void setFunctionPower(
Integer
);
|
| [Python - STK API] |
|---|
@property
def FunctionPower(self) -> int:
@FunctionPower.setter
def FunctionPower(self, val:int) -> None:
|
See Also