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

Describes a category of items in the expression editor.

Definition

Namespace:Telerik.Windows.Controls.Expressions

Assembly:Telerik.Windows.Controls.Expressions.dll

Syntax:

C#
public class EditorCategoryModel : EditorModelBase

Inheritance: objectEditorModelBaseEditorCategoryModel

Inherited Members EditorModelBase.Name

Constructors

Initializes a new instance of the EditorCategoryModel class.

C#
public EditorCategoryModel(string name, IEnumerable<EditorModelBase> children)
Parameters:namestring

The name of the category.

childrenIEnumerable<EditorModelBase>

A collection with the child categories and child items.

Initializes a new instance of the EditorCategoryModel class.

C#
public EditorCategoryModel(string name)
Parameters:namestring

The name of the category.

Properties

Gets the child categories of this category.

C#
public IEnumerable<EditorCategoryModel> ChildCategories { get; }

Gets the children of this category.

C#
public IList<EditorModelBase> Children { get; }