Back to Devexpress

ASPxGridSettings.ShowTitlePanel Property

aspnet-devexpress-dot-web-dot-aspxgridsettings-2fb0df98.md

latest1.8 KB
Original Source

ASPxGridSettings.ShowTitlePanel Property

Specifies whether the grid displays the Title Panel.

Namespace : DevExpress.Web

Assembly : DevExpress.Web.v25.2.dll

NuGet Package : DevExpress.Web

Declaration

csharp
[DefaultValue(false)]
public bool ShowTitlePanel { get; set; }
vb
<DefaultValue(False)>
Public Property ShowTitlePanel As Boolean

Property Value

TypeDefaultDescription
Booleanfalse

true to display the title panel; otherwise, false.

|

Remarks

Set the ShowTitlePanel property to true to display the Title Panel in the grid.

To specify the text within the Title Panel , use the Title property. To customize the panel’s appearance, specify the TitlePanel property.

aspx
<dx:ASPxGridView ID="Grid" runat="server">
    <!-- ... -->
    <Settings ShowTitlePanel="true" />
    <SettingsText Title="ASPxGridView Title" />
    <Styles>
        <TitlePanel>
            <!-- ... -->
        </TitlePanel>
    </Styles>
</dx:ASPxGridView>

See Also

ASPxGridSettings Class

ASPxGridSettings Members

DevExpress.Web Namespace