Description
The first safety coefficient. Dimensionless.
Property type
Read-write property
Syntax
[Visual Basic .NET] |
---|
Public Property FirstSafetyCoefficient() As Double
|
[C#] |
---|
public double FirstSafetyCoefficient {get; set;}
|
[Managed C++] |
---|
public: __property double get_FirstSafetyCoefficient(); public: __property void set_FirstSafetyCoefficient(
double
);
|
[Unmanaged C++] |
---|
public: HRESULT get_FirstSafetyCoefficient(
double * pVal
);
public: HRESULT put_FirstSafetyCoefficient(
double InVal
);
|
[Java] |
---|
public double getFirstSafetyCoefficient();
public void setFirstSafetyCoefficient(
double
);
|
[Python - STK API] |
---|
@property
def FirstSafetyCoefficient(self) -> float:
@FirstSafetyCoefficient.setter
def FirstSafetyCoefficient(self, InVal:float) -> None:
|
See Also