Description
Gets or sets the option for computing gain.
Property type
Read-write property
Syntax
[Visual Basic .NET] |
---|
Public Property ComputeGain() As Boolean
|
[C#] |
---|
public bool ComputeGain {get; set;}
|
[Managed C++] |
---|
public: __property bool get_ComputeGain(); public: __property void set_ComputeGain(
bool
);
|
[Unmanaged C++] |
---|
public: HRESULT get_ComputeGain(
VARIANT_BOOL * pVal
);
public: HRESULT put_ComputeGain(
VARIANT_BOOL val
);
|
[Java] |
---|
public bool getComputeGain();
public void setComputeGain(
bool
);
|
[Python - STK API] |
---|
@property
def ComputeGain(self) -> bool:
@ComputeGain.setter
def ComputeGain(self, val:bool) -> None:
|
See Also