ASPxGridTextSettings.Title Property
Specifies the text within the grid’s Title Panel.
Namespace: DevExpress.Web
Assembly: DevExpress.Web.v26.1.dll
Declaration
Property Value
| Type | Default | Description |
|---|---|---|
| String | String.Empty | The text. |
Remarks
The Title property allows you to specify the text within the grid’s Title Panel.

To display the Title Panel in the grid, set the ShowTitlePanel property to true. To customize the panel’s appearance, specify the TitlePanel property.
<dx:ASPxGridView ID="Grid" runat="server">
<!-- ... -->
<Settings ShowTitlePanel="true" />
<SettingsText Title="ASPxGridView Title" />
<Styles>
<TitlePanel>
<!-- ... -->
</TitlePanel>
</Styles>
</dx:ASPxGridView>
See Also