Click or drag to resize

MapStyleGetParameterValue Method

Verizon Connect Logo
Print this page
Learn more about Verizon Connect GeoBase.
Get information about the latest release
Gets the value of the specified parameter. The parameter will be set in the Chameleon .CAM file using the PARAMETER %param = 1 syntax.

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

Parameters

name
Type: SystemString
The parameter to get the value of.

Return Value

Type: Single
The parameter value, or 0 if no such parameter exists.
Examples
C#
MapStyle style = MapStyle.Create("my_style_file.cam");
float p = style.GetParameterValue("my_param_name");
See Also