System.String
Get/Set
The Code property indicates the code used to identify the DatumShift referenced by this object. This code, combined with the issuer "GC" (the default issuer for all objects in the GeoCalcNET data sources) can be used to fetch the DatumShift from the data source.
Private Sub GeoCalcNET_DatumShiftInfo_Code(ByVal dsi As GeoCalcNET.DatumShiftInfo, ByVal data As GeoCalcNET.DataSourceComponent)
dsi.Code = "ED50-WESTERN_to_WGS84"
Dim ds As GeoCalcNET.DatumShift = data.GetDatumShift("GC", dsi.Code)
End Sub
private void GeoCalcNET_DatumShiftInfo_Code(GeoCalcNET.DatumShiftInfo dsi, GeoCalcNET.DataSourceComponent data)
{
dsi.Code = "ED50-WESTERN_to_WGS84";
GeoCalcNET.DatumShift ds = data.GetDatumShift("GC", dsi.Code);
}