Skip to main content
A newer version of this page is available. .
Tab

ASPxGridTextSettings.Title Property

Specifies the text within the grid’s Title Panel.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v21.2.dll

NuGet Package: DevExpress.Web

Declaration

[DefaultValue("")]
public string Title { get; set; }

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.

ASPxGridView - TitlePanel

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