Get/Set
The PointStyle property provides access to the CoordPoint that is used as a template for all points in this coordinate system.
Private Sub GeoCalcNET_CoordSys_PointStyle(ByVal cs As GeoCalcNET.CoordSys, ByVal data As GeoCalcNET.DataSourceComponent)
Dim pt As GeoCalcNET.CoordPoint = cs.PointStyle
If cs.Class = GeoCalcNET.CoordSys.ClassType.Geodetic Then
cs.PointStyle = data.GetGeodeticPoint("BMG", "GEODETIC_POINT_DEGREES")
End If
End Sub
private void GeoCalcNET_CoordSys_PointStyle(GeoCalcNET.CoordSys cs, GeoCalcNET.DataSourceComponent data)
{
GeoCalcNET.CoordPoint pt = cs.PointStyle;
if(cs.Class == GeoCalcNET.CoordSys.ClassType.Geodetic)
{
cs.PointStyle = data.GetGeodeticPoint("BMG", "GEODETIC_POINT_DEGREES");
}
}