Skip to main content

PivotGridDesignOptions.ShowLoadXmlDataDesignerTab Property

Specifies whether to show the Load Data from XML tab in the Pivot Grid Designer.

Namespace: DevExpress.XtraReports.Configuration

Assembly: DevExpress.XtraReports.v23.2.Extensions.dll

NuGet Package: DevExpress.Win.Reporting

Declaration

public bool ShowLoadXmlDataDesignerTab { get; set; }

Property Value

Type Description
Boolean

true, to show the Load Data from XML tab; otherwise, false.

Property Paths

You can access this nested property as listed below:

Object Type Path to ShowLoadXmlDataDesignerTab
DesignSettings
.PivotGridOptions .ShowLoadXmlDataDesignerTab

Remarks

By default, the ShowLoadXmlDataDesignerTab property is set to true and the Load Data from XML tab is available in the Pivot Grid Designer’s Layout page.

reports-pivot-grid-designer-layout-page

To hide this tab, disable this option in the following way:

using DevExpress.XtraReports.Configuration;
// ...

static void Main() {
    DesignSettings.Default.PivotGridOptions.ShowLoadXmlDataDesignerTab = false;
    //...
}
See Also