Click or drag to resize
Grid Solutions Framework

ParametersValueT(Int32) Method

Gets typed value of parameter at specified index, if the index is valid and the value can be cast as type.

Namespace: GrafanaAdapters.Functions
Assembly: GrafanaAdapters (in GrafanaAdapters.dll) Version: 2.4.182-beta
Syntax
public T Value<T>(
	int index
)
View Source

Parameters

index  Int32
Index of parameter to get.

Type Parameters

T
The type of the parameter.

Return Value

T
The typed value of parameter at specified index if the index is valid and the value can be cast to type; otherwise, default value.
Remarks
This function will not throw an exception if the index is invalid.
See Also