Back to Devexpress

PivotGridOptionsCustomization.CustomizationFormStyle Property

corelibraries-devexpress-dot-xtrapivotgrid-dot-pivotgridoptionscustomization-5ca76f43.md

latest4.8 KB
Original Source

PivotGridOptionsCustomization.CustomizationFormStyle Property

Gets or sets the Customization Form‘s style.

Namespace : DevExpress.XtraPivotGrid

Assembly : DevExpress.PivotGrid.v25.2.Core.dll

NuGet Packages : DevExpress.PivotGrid.Core, DevExpress.Win.Navigation

Declaration

csharp
[DefaultValue(CustomizationFormStyle.Simple)]
public CustomizationFormStyle CustomizationFormStyle { get; set; }
vb
<DefaultValue(CustomizationFormStyle.Simple)>
Public Property CustomizationFormStyle As CustomizationFormStyle

Property Value

TypeDefaultDescription
CustomizationFormStyleSimple

A CustomizationFormStyle value that specifies the customization form’s style.

|

Available values:

NameDescription
Simple

The Customization Form is represented using the Simple style:

| | Excel2007 |

The Customization Form is represented using the Office 2007 style:

An end-user can move fields between areas by dragging their field headers within the Customization Form. When the Defer Layout Update check box is checked, dragging fields doesn’t immediately update the layout. To update the layout, click the Update button.

|

The following code snippets (auto-collected from DevExpress Examples) contain references to the CustomizationFormStyle property.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

winforms-pivot-grid-connect-to-an-olap-datasource/CS/WinOlapRetrieveFieldsExample/Form1.cs#L18

csharp
// Set the Customization Forms style.
pivotGridControl1.OptionsCustomization.CustomizationFormStyle = CustomizationFormStyle.Excel2007;
// Invoke the Customization Form.

winforms-pivot-display-the-customization-form-near-the-pivotgrid/CS/StandaloneCustForm/Form1.cs#L14

csharp
// Set the Customization Form style and show the form.
pivotGridControl1.OptionsCustomization.CustomizationFormStyle =
    DevExpress.XtraPivotGrid.Customization.CustomizationFormStyle.Excel2007;

winforms-pivot-grid-connect-to-an-olap-datasource/VB/WinOlapRetrieveFieldsExample/Form1.vb#L19

vb
' Set the Customization Forms style.
pivotGridControl1.OptionsCustomization.CustomizationFormStyle = CustomizationFormStyle.Excel2007
' Invoke the Customization Form.

winforms-pivot-display-the-customization-form-near-the-pivotgrid/VB/StandaloneCustForm/Form1.vb#L17

vb
' Set the Customization Form style and show the form.
pivotGridControl1.OptionsCustomization.CustomizationFormStyle = DevExpress.XtraPivotGrid.Customization.CustomizationFormStyle.Excel2007
pivotGridControl1.FieldsCustomization()

See Also

PivotGridOptionsCustomization Class

PivotGridOptionsCustomization Members

DevExpress.XtraPivotGrid Namespace