Click or drag to resize
Grid Solutions Framework

ParametersValue(String) Method

Gets value of parameter with specified name, if name is found.

Namespace: GrafanaAdapters.Functions
Assembly: GrafanaAdapters (in GrafanaAdapters.dll) Version: 2.4.182-beta
Syntax
public Object Value(
	string name
)
View Source

Parameters

name  String
Name of parameter to get.

Return Value

Object
The value of parameter with the specified name if the parameter name can be found; otherwise, null.
Remarks
Parameter name lookup dictionary is lazy initialized. Using index-based lookups is more efficient. This function will not throw an exception if the name is not found.
See Also