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 Argument
Declaration
public ArgumentInfo(string name, string description, ArgumentType type, bool isRequired = true, string nameLocalizationKey = null, string descriptionLocalizationKey = null)
Parameters
System. The name of the argument. |
System. The description of the argument. |
Argument The type type of the argument. |
System. Boolean indicating whether the argument is required or optional. If it is required, it should be set to true. |
System. The localization key of the name of the argument. |
System. 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. The description. |
DescriptionLocalizationKey
Gets the description localization key.
Declaration
public string DescriptionLocalizationKey { get; }
Property Value
System. The description localization key. |
Name
Gets the name of the argument.
Declaration
public string Name { get; }
Property Value
System. The name. |
NameLocalizationKey
Gets the name localization key.
Declaration
public string NameLocalizationKey { get; }
Property Value
System. The name localization key. |
Type
Gets the type of the argument.
Declaration
public ArgumentType Type { get; }
Property Value
Argument The type. |