MapStyleClearParameter Method | |
Print this page
Learn more about Verizon Connect GeoBase.
Get information about the latest release
Clear the parameter to the Unset state.
Namespace:
Telogis.GeoBase
Assembly:
geobase.net (in geobase.net.dll) Version: 4.99.0.0
Syntax public void ClearParameter(
string name
)
Public Sub ClearParameter (
name As String
)
Parameters
- name
- Type: SystemString
Name of the parameter to clear.
Examples MapStyle style = MapStyle.Create("my_style.cam");
float p = style.GetParameterValue("param");
style.SetParameter("param", 1);
p = style.GetParameterValue("param");
style.ClearParameter("param");
p = style.GetParameterValue("param");
See Also