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

Describes an item in the expression editor.

Definition

Namespace:Telerik.Windows.Controls.Expressions

Assembly:Telerik.Windows.Controls.Expressions.dll

Syntax:

C#
public abstract class EditorItemModel : EditorModelBase

Inheritance: objectEditorModelBaseEditorItemModel

Derived Classes: ConstantEditorItemModelFieldEditorItemModelFunctionEditorItemModelOperatorEditorItemModel

Inherited Members EditorModelBase.Name

Constructors

Initializes a new instance of the EditorItemModel class.

C#
protected EditorItemModel(string name, string description)
Parameters:namestring

The name of the model.

descriptionstring

The description for the model.

Properties

Gets the description of the item.

C#
public string Description { get; }

Gets the name of this item.

C#
public virtual string QuickInfo { get; }

Methods

Returns the name of this model.

C#
public override string ToString()
Returns:

string

The name of this model.

Overrides: object.ToString()