Description
Gets or sets the duty factor.
Property type
Read-write property
Syntax
[Visual Basic .NET] |
---|
Public Property DutyFactor() As Double
|
[C#] |
---|
public double DutyFactor {get; set;}
|
[Managed C++] |
---|
public: __property double get_DutyFactor(); public: __property void set_DutyFactor(
double
);
|
[Unmanaged C++] |
---|
public: HRESULT get_DutyFactor(
double * pVal
);
public: HRESULT put_DutyFactor(
double val
);
|
[Java] |
---|
public double getDutyFactor();
public void setDutyFactor(
double
);
|
[Python - STK API] |
---|
@property
def DutyFactor(self) -> float:
@DutyFactor.setter
def DutyFactor(self, val:float) -> None:
|
See Also