System.String
Get/Set
The Name property indicates the name of the DatumShift referenced by this DatumShiftInfo instance.
Private Sub GeoCalcNET_DatumShiftInfo_Name(ByVal dsi As GeoCalcNET.DatumShiftInfo)
Dim name As String = dsi.Name
dsi.Name = "ED50-WESTERN to WGS84"
End Sub
private void GeoCalcNET_DatumShiftInfo_Name(GeoCalcNET.DatumShiftInfo dsi)
{
String name = dsi.Name;
dsi.Name = "ED50-WESTERN to WGS84";
}