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.v24.1.Extensions.dll
NuGet Package: DevExpress.Win.Reporting
Declaration
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 |
|
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.
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