Class FunctionEditorItemModel
Describes a function item in the expression editor.
Namespace: Telerik.Windows.Controls.Expressions
Assembly: Telerik.Windows.Controls.Expressions.dll
Syntax
public class FunctionEditorItemModel : EditorItemModel
Constructors
FunctionEditorItemModel(MethodInfo, String)
Initializes a new instance of the FunctionEditorItemModel class.
Declaration
public FunctionEditorItemModel(MethodInfo methodInfo, string category)
Parameters
System.Reflection.MethodInfo
methodInfo
The method info of the function this item model represents. |
System.String
category
The category of this function item model. |
Properties
Category
Gets the category if this item model.
Declaration
public string Category { get; }
Property Value
System.String
|
MethodInfo
Gets the method info represented by this function item mode.
Declaration
public MethodInfo MethodInfo { get; }
Property Value
System.Reflection.MethodInfo
|
QuickInfo
Gets a user-friendly text for this function and its arguments.
Declaration
public override string QuickInfo { get; }
Property Value
System.String
|
Overrides
Methods
ToString()
Returns the expression token value of this model.
Declaration
public override string ToString()
Returns
System.String
The expression token value of this model. |