Class EditorCategoryModel
Describes a category of items in the expression editor.
Inherited Members
Namespace: Telerik.Windows.Controls.Expressions
Assembly: Telerik.Windows.Controls.Expressions.dll
Syntax
public class EditorCategoryModel : EditorModelBase
Constructors
EditorCategoryModel(String)
Initializes a new instance of the EditorCategoryModel class.
Declaration
public EditorCategoryModel(string name)
Parameters
System.String
name
The name of the category. |
EditorCategoryModel(String, IEnumerable<EditorModelBase>)
Initializes a new instance of the EditorCategoryModel class.
Declaration
public EditorCategoryModel(string name, IEnumerable<EditorModelBase> children)
Parameters
System.String
name
The name of the category. |
System.Collections.Generic.IEnumerable<EditorModelBase>
children
A collection with the child categories and child items. |
Properties
ChildCategories
Gets the child categories of this category.
Declaration
public IEnumerable<EditorCategoryModel> ChildCategories { get; }
Property Value
System.Collections.Generic.IEnumerable<EditorCategoryModel>
|
Children
Gets the children of this category.
Declaration
public IList<EditorModelBase> Children { get; }
Property Value
System.Collections.Generic.IList<EditorModelBase>
|