MapStyleGetParameterValue Method | |
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
)
Public Function GetParameterValue (
name As String
) As Single
Parameters
- name
- Type: SystemString
The parameter to get the value of.
Return Value
Type:
SingleThe parameter value, or 0 if no such parameter exists.
Examples MapStyle style = MapStyle.Create("my_style_file.cam");
float p = style.GetParameterValue("my_param_name");
See Also