ASPxGridTextSettings.Title Property
In This Article
Specifies the text within the grid’s Title Panel.
Namespace: DevExpress.Web
Assembly: DevExpress.Web.v24.2.dll
NuGet Package: DevExpress.Web
#Declaration
#Property Value
Type | Default | Description |
---|---|---|
String | String. |
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