| 
            
              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.FunctionsAssembly: GrafanaAdapters (in GrafanaAdapters.dll) Version: 2.4.258-beta
Syntaxpublic T Value<T>(
	int index
)
Public Function Value(Of T) ( 
	index As Integer
) As T
public:
generic<typename T>
T Value(
	int index
)
member Value : 
        index : int -> 'T JavaScript does not support generic types or methods.
 View SourceParameters
- 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