Class ArgumentInfo
Provides methods and properties providing info for an argument.
Inheritance
Inherited Members
Namespace: Telerik.Windows.Documents.Spreadsheet.Expressions.Functions
Assembly: Telerik.Windows.Documents.Spreadsheet.dll
Syntax
public class ArgumentInfo
Constructors
ArgumentInfo(String, String, ArgumentType, Boolean, String, String)
Initializes a new instance of the ArgumentInfo class.
Declaration
public ArgumentInfo(string name, string description, ArgumentType type, bool isRequired = true, string nameLocalizationKey = null, string descriptionLocalizationKey = null)
Parameters
System.String
name
The name of the argument. |
System.String
description
The description of the argument. |
ArgumentType
type
The type type of the argument. |
System.Boolean
isRequired
Boolean indicating whether the argument is required or optional. If it is required, it should be set to true. |
System.String
nameLocalizationKey
The localization key of the name of the argument. |
System.String
descriptionLocalizationKey
The localization key of the description of the argument. |
Properties
Description
Gets the description of the argument.
Declaration
public string Description { get; }
Property Value
System.String
The description. |
DescriptionLocalizationKey
Gets the description localization key.
Declaration
public string DescriptionLocalizationKey { get; }
Property Value
System.String
The description localization key. |
Name
Gets the name of the argument.
Declaration
public string Name { get; }
Property Value
System.String
The name. |
NameLocalizationKey
Gets the name localization key.
Declaration
public string NameLocalizationKey { get; }
Property Value
System.String
The name localization key. |
Type
Gets the type of the argument.
Declaration
public ArgumentType Type { get; }
Property Value
ArgumentType
The type. |