InUnits Property

Type

System.Double

 

Access

Get/Set

 

Description

The InUnits property allows one to get or set the value of this LinearValue in the specified Units.

 

Example

[VB]

Private Sub GeoCalcNET_LinearValue_InUnits(ByVal lv As GeoCalcNET.LinearValue)

Dim d As Double = lv.InUnits

lv.InUnits = 998

End Sub

 

[C#]

private void GeoCalcNET_LinearValue_InUnits(GeoCalcNET.LinearValue lv)

{

double d = lv.InUnits;

lv.InUnits = 8393;

}