System.Double
Get/Set
The InUnits property allows one to get or set the value of this LinearValue in the specified Units.
Private Sub GeoCalcNET_LinearValue_InUnits(ByVal lv As GeoCalcNET.LinearValue)
Dim d As Double = lv.InUnits
lv.InUnits = 998
End Sub
private void GeoCalcNET_LinearValue_InUnits(GeoCalcNET.LinearValue lv)
{
double d = lv.InUnits;
lv.InUnits = 8393;
}