ReverseUsage Property

Type

System.Boolean

 

Access

Get/Set

 

Description

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.

 

Example

[VB]

Private Sub GeoCalcNET_DatumShiftInfo_ReverseUsage(ByVal dsi As GeoCalcNET.DatumShiftInfo)

Dim rev As Boolean = dsi.ReverseUsage

dsi.ReverseUsage = False

End Sub

 

[C#]

private void GeoCalcNET_DatumShiftInfo_ReverseUsage(GeoCalcNET.DatumShiftInfo dsi)

{

bool b = dsi.ReverseUsage;

dsi.ReverseUsage = false;

}