Name Property

Type

System.String

 

Access

Get/Set

 

Description

The Name property indicates the name of the DatumShift referenced by this DatumShiftInfo instance.

 

Example

[VB]

Private Sub GeoCalcNET_DatumShiftInfo_Name(ByVal dsi As GeoCalcNET.DatumShiftInfo)

Dim name As String = dsi.Name

dsi.Name = "ED50-WESTERN to WGS84"

End Sub

 

[C#]

private void GeoCalcNET_DatumShiftInfo_Name(GeoCalcNET.DatumShiftInfo dsi)

{

String name = dsi.Name;

dsi.Name = "ED50-WESTERN to WGS84";

}