Click or drag to resize

MapStyleGetProperty Method

Verizon Connect Logo
Print this page
Learn more about Verizon Connect GeoBase.
Get information about the latest release
Gets a Property value by name.

Namespace:  Telogis.GeoBase
Assembly:  geobase.net (in geobase.net.dll) Version: 4.99.0.0
Syntax
public string GetProperty(
	string name
)

Parameters

name
Type: SystemString
The name of the property to get.

Return Value

Type: String
The requested property value.
Examples
C#
// 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);
See Also