|
ParametersParsedCount Property
|
Gets or sets the number of parameters that have been parsed.
Namespace: GrafanaAdapters.FunctionsAssembly: GrafanaAdapters (in GrafanaAdapters.dll) Version: 2.4.207-beta
Syntax public int ParsedCount { get; set; }
Public Property ParsedCount As Integer
Get
Set
public:
property int ParsedCount {
int get ();
void set (int value);
}
member ParsedCount : int with get, set
function get_ParsedCount();
function set_ParsedCount(value);
View SourceProperty Value
Int32Remarks
The number of parameters in defined in the
Parameters collection will always match the number of
parameters defined in the function definition, optional or not, see
ParameterDefinitions. This
property is used to determine the count of required and optional parameters that were actually parsed from the
user provided function expression. Note that the count does not include the data source values expression,
which is always available as the last parameter. With this count, the function can determine which optional
parameters were parsed and are thus available for use.
See Also