MapStyleGetProperty Method |
Namespace: Telogis.GeoBase
// in the Chameleon (.CAM) file: // ----------------------------- PROPERTY developer_name = "Joe Bloggs" // in the C# usercode: // ----------------------------- MapStyle style = MapStyle.Create("my_style.cam"); string dev_name = style.GetProperty("developer_name"); Console.WriteLine("This custom map style created by " + dev_name);