RadGrid for ASP.NET

RadGrid Send comments on this topic.
HierarchySettings Property
See Also 
Telerik.WebControls Namespace > RadGrid Class : HierarchySettings Property


Gets a reference to the GridHierarchySettings object that allows you to set the properties of the hierarchical Telerik RadGrid control.

  

 

Namespace: Telerik.WebControls
Assembly: RadGrid (in RadGrid.dll)

Syntax

Visual Basic (Declaration) 
Public ReadOnly Property HierarchySettings As GridHierarchySettings
Visual Basic (Usage)Copy Code
Dim instance As RadGrid
Dim value As GridHierarchySettings
 
value = instance.HierarchySettings
C# 
public GridHierarchySettings HierarchySettings {get;}

Return Value

A reference to the GridHierarchySettings that allows you to set the properties of the hierarchical Telerik RadGrid control.

Remarks

Use the HierarchySettings property to control the settings of the hierarchical Telerik RadGrid control. This property is read-only; however, you can set the properties of the GridHierarchySettings object it returns. The properties can be set declaratively using one of the following methods:

  • Place an attribute in the opening tag of the Telerik RadGrid control in the form Property-Subproperty, where Subproperty is a property of the GridHierarchySettings object (for example, HierarchySettings-CollapseTooltip).
  • Nest a <HierarchySettings> element between the opening and closing tags of the Telerik RadGrid control.

The properties can also be set programmatically in the form Property.Subproperty (for example, HierarchySettings.CollapseTooltip). Common settings usually include the tool tips for the hierarchical Telerik RadGrid control.

Requirements

Platforms: Windows 2000, Windows XP Professional, Windows Server 2003 family

See Also