RadGrid for ASP.NET

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


Gets a reference to the GridExportSettings object that allows you to set the properties of the grouping operation in a Telerik RadGrid control.

  

 

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

Syntax

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

Return Value

A reference to the GridExportSettings that allows you to set the properties of the grouping operation in a Telerik RadGrid control.

Remarks

Use the ExportSettings property to control the settings of the grouping operations in a Telerik RadGrid control. This property is read-only; however, you can set the properties of the GridGroupingSettings 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 GridExportSettings object (for example, GroupingSettings-ExpandTooltip).
  • Nest a <GroupingSettings> 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, GroupingSettings.ExpandTooltip). Common settings usually include the tool tips for the sorting controls.

Requirements

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

See Also