Description
A method to define the numeric value of both the measurement and the input unit. Thus Value has a "Unit" member which must be an ODTK-recognized unit string.
The default is 0.0.
For example, if pObs is created to hold a Doppler measurement, then to input a value in units of meters/second, the VBS commands would be:
pObs.MeasureType = 2 ' Doppler
pObs.value.Unit = "m/sec"
pObs.value = 6628.234
Property type
Read-only property
Syntax
[Visual Basic .NET] |
---|
Public Property Value() As IAgPropQty
|
[Managed C++] |
---|
public: __property IAgPropQty ^ get_Value();
|
[Unmanaged C++] |
---|
public: HRESULT get_Value(
IAgPropQty ** pVal
);
|
[Python - STK API ] |
---|
@property
def Value(self) -> "IAgPropQty":
|
See Also