GridOptionsPrint.AllowMultilineHeaders Property
Gets or sets whether text is wrapped in the print/export output if it contains newline characters.
Namespace: DevExpress.XtraGrid.Views.Grid
Assembly: DevExpress.XtraGrid.v24.1.dll
NuGet Packages: DevExpress.Win.Grid, DevExpress.Win.Navigation
Declaration
[DefaultValue(false)]
[XtraSerializableProperty]
public virtual bool AllowMultilineHeaders { get; set; }
Property Value
Type | Default | Description |
---|---|---|
Boolean | false | true if text is wrapped in the print/export output if it contains newline characters; otherwise, false. |
Property Paths
You can access this nested property as listed below:
Object Type | Path to AllowMultilineHeaders |
---|---|
GridView |
|
Remarks
You can include newline characters in column headers and band headers using the “\n” escape sequence in C#, and the VbCrLf constant in Visual Basic. By default, the AllowMultilineHeaders property is set to false and as a result, newline characters are ignored when the grid is printed/exported. For newlines to be in effect in the print/export output, set the AllowMultilineHeaders property to true.
Note
By default, column and band headers are not auto enlarged to fit multi-line text. You can make the header panels bigger using the GridView.ColumnPanelRowHeight and BandedGridView.BandPanelRowHeight properties, respectively.
Related GitHub Examples
The following code snippet (auto-collected from DevExpress Examples) contains a reference to the AllowMultilineHeaders 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.