| 
            
              ParameterDefinitionTRequired Property
             | 
          
        
        
            Gets flag that indicates if the parameter is required.
            
        
        Namespace: GrafanaAdapters.FunctionsAssembly: GrafanaAdapters (in GrafanaAdapters.dll) Version: 2.4.257-beta
Syntaxpublic bool Required { get; init; }Public Property Required As Boolean
	Get
	Set
public:
virtual property bool Required {
	bool get () sealed;
	void set (bool value) sealed;
}abstract Required : bool with get, set
override Required : bool with get, set
function get_Required();
function set_Required(value);
 View SourceProperty Value
BooleanImplements
IParameterRequired
Remarks
            Required parameters (i.e., Required = true) must precede
            optional parameters (i.e., Required = false) in the
            parameter list.
            
            Note that the data source values parameter, i.e., the 'expression', is technically
            a required parameter but always exists as the last parameter after any defined
            optional or internal parameters. This parameter is automatically added to the
            parameter list by the ParameterDefinitions class.
            
See Also