New to Telerik UI for WPFStart a free 30-day trial

Describes a function item in the expression editor.

Definition

Namespace:Telerik.Windows.Controls.Expressions

Assembly:Telerik.Windows.Controls.Expressions.dll

Syntax:

C#
public class FunctionEditorItemModel : EditorItemModel

Inheritance: objectEditorModelBaseEditorItemModelFunctionEditorItemModel

Inherited Members EditorItemModel.DescriptionEditorModelBase.Name

Constructors

Initializes a new instance of the FunctionEditorItemModel class.

C#
public FunctionEditorItemModel(MethodInfo methodInfo, string category)
Parameters:methodInfoMethodInfo

The method info of the function this item model represents.

categorystring

The category of this function item model.

Properties

Gets the category if this item model.

C#
public string Category { get; }

Gets the method info represented by this function item mode.

C#
public MethodInfo MethodInfo { get; }

Gets a user-friendly text for this function and its arguments.

C#
public override string QuickInfo { get; }

Overrides: EditorItemModel.QuickInfo

Methods

Returns the expression token value of this model.

C#
public override string ToString()
Returns:

string

The expression token value of this model.

Overrides: EditorItemModel.ToString()