Description
The vector's scale factor.
Property type
Read-write property
Syntax
| [Visual Basic .NET] |
|---|
Public Property ScaleFactor() As Double
|
| [C#] |
|---|
public double ScaleFactor {get; set;}
|
| [Managed C++] |
|---|
public: __property double get_ScaleFactor(); public: __property void set_ScaleFactor(
double
);
|
| [Unmanaged C++] |
|---|
public: HRESULT get_ScaleFactor(
double * pRetVal
);
public: HRESULT put_ScaleFactor(
double ScaleFactor
);
|
| [Java] |
|---|
public double getScaleFactor();
public void setScaleFactor(
double
);
|
| [Python - STK API] |
|---|
@property
def ScaleFactor(self) -> float:
@ScaleFactor.setter
def ScaleFactor(self, ScaleFactor:float) -> None:
|
See Also