Defines a parameter for a formula function.
Object
Namespace: Radzen.Documents.Spreadsheet
Assembly: Radzen.Blazor.dll
public class FunctionParameterInitializes a new instance of the FunctionParameter class.
Defines a parameter for a formula function.
public FunctionParameter(string name, Documents.Spreadsheet.ParameterType type, bool isRequired)
| Type | Name | Description |
|---|---|---|
| string | name | The name of the parameter. |
| Documents.Spreadsheet.ParameterType | type | The type of the parameter. |
| bool | isRequired | Whether this parameter is required. |
Gets a value indicating whether this parameter is required.
public bool IsRequired { get; }
| Type | Description |
|---|---|
| bool | Gets a value indicating whether this parameter is required. |
Gets the name of the parameter.
public string Name { get; }
| Type | Description |
|---|---|
| string | Gets the name of the parameter. |
Gets the type of the parameter.
public Documents.Spreadsheet.ParameterType Type { get; }
| Type | Description |
|---|---|
| Documents.Spreadsheet.ParameterType | Gets the type of the parameter. |