Description
Gets or set the detector gain.
Property type
Read-write property
Syntax
[Visual Basic .NET] |
---|
Public Property DetectorGain() As Double
|
[C#] |
---|
public double DetectorGain {get; set;}
|
[Managed C++] |
---|
public: __property double get_DetectorGain(); public: __property void set_DetectorGain(
double
);
|
[Unmanaged C++] |
---|
public: HRESULT get_DetectorGain(
double * pVal
);
public: HRESULT put_DetectorGain(
double val
);
|
[Java] |
---|
public double getDetectorGain();
public void setDetectorGain(
double
);
|
[Python - STK API] |
---|
@property
def DetectorGain(self) -> float:
@DetectorGain.setter
def DetectorGain(self, val:float) -> None:
|
See Also