Description
The contours value represents the gain value relative to the maximum.
Property type
Read-write property
Syntax
[Visual Basic .NET] |
---|
Public Property RelativeToMaxGain() As Boolean
|
[C#] |
---|
public bool RelativeToMaxGain {get; set;}
|
[Managed C++] |
---|
public: __property bool get_RelativeToMaxGain(); public: __property void set_RelativeToMaxGain(
bool
);
|
[Unmanaged C++] |
---|
public: HRESULT get_RelativeToMaxGain(
VARIANT_BOOL * pVal
);
public: HRESULT put_RelativeToMaxGain(
VARIANT_BOOL val
);
|
[Java] |
---|
public bool getRelativeToMaxGain();
public void setRelativeToMaxGain(
bool
);
|
[Python - STK API] |
---|
@property
def RelativeToMaxGain(self) -> bool:
@RelativeToMaxGain.setter
def RelativeToMaxGain(self, val:bool) -> None:
|
See Also