System.Boolean
Get/Set
The ReverseUsage property indicates the direction of the DatumShift referenced by this object. If ReverseUsage is set to true, then the DatumShift should shift from the TargetDatum to the SourceDatum, and if ReverseUsage is set to false, then the DatumShift should shift from the SourceDatum to the TargetDatum.
Private Sub GeoCalcNET_DatumShiftInfo_ReverseUsage(ByVal dsi As GeoCalcNET.DatumShiftInfo)
Dim rev As Boolean = dsi.ReverseUsage
dsi.ReverseUsage = False
End Sub
private void GeoCalcNET_DatumShiftInfo_ReverseUsage(GeoCalcNET.DatumShiftInfo dsi)
{
bool b = dsi.ReverseUsage;
dsi.ReverseUsage = false;
}