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

XlsExportOptionsEx.GroupState Property

Gets or sets data groups’ expanded state in the exported document. Only available in data-aware export mode.

Namespace: DevExpress.XtraPrinting

Assembly: DevExpress.Printing.v19.1.Core.dll

Declaration

[XtraSerializableProperty]
[DefaultValue(GroupState.Default)]
public GroupState GroupState { get; set; }

Property Value

Type Default Description
GroupState **Default**

A value that specifies the expanded state of data groups in the output document.

Remarks

Use the GroupState property to specify whether or not information from collapsed rows (Grid) or nodes (Tree List) should be printed in Data-Aware Export mode (set the XlsExportOptionsEx.ExportType property to DataAware to enable this mode).

Value Versions 16.2 and older Versions 17.1 and newer
ExpandAll Print all content Print all content
Default Export only those groups (nodes) that are already expanded Specified by a control

Control-level options mentioned in the table above include the following:

If updating your project to v17.1 or higher, you can choose to keep the previous behavior using the WindowsFormsSettings.DefaultSettingsCompatibilityMode option. See Version Compatibility: Default Property Values to learn more.

See Also