Class ContainerNode
Represents a node in FieldInfoNode hierarchy.
Inheritance
Namespace: Telerik.Pivot.Core.Fields
Assembly: Telerik.Pivot.Core.dll
Syntax
public class ContainerNode : Object
Constructors
ContainerNode(String, String, ContainerNodeRole)
Initializes a new instance of the ContainerNode class.
Declaration
public ContainerNode(string name, string caption, ContainerNodeRole role)
Parameters
System.String
name
|
System.String
caption
|
ContainerNodeRole
role
|
ContainerNode(String, ContainerNodeRole)
Initializes a new instance of the ContainerNode class.
Declaration
public ContainerNode(string caption, ContainerNodeRole role)
Parameters
System.String
caption
|
ContainerNodeRole
role
|
Properties
Caption
Gets the display name.
Declaration
public string Caption { get; }
Property Value
System.String
The display name. |
Children
Gets the children.
Declaration
public IList<ContainerNode> Children { get; }
Property Value
System.Collections.Generic.IList<ContainerNode>
The children. |
HasChildren
Value indicating whether this instance has child nodes.
Declaration
public virtual bool HasChildren { get; }
Property Value
System.Boolean
True, if there are child nodes. |
Name
Gets a string that can be used as an identifier of this instance.
Declaration
public string Name { get; }
Property Value
System.String
The name. |
Role
Gets or sets the role.
Declaration
public ContainerNodeRole Role { get; protected set; }
Property Value
ContainerNodeRole
The role. |