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

GridOptionsPrint.PrintSelectedRowsOnly Property

Gets or sets whether only the focused/selected rows are printed/exported.

Namespace: DevExpress.XtraGrid.Views.Grid

Assembly: DevExpress.XtraGrid.v19.2.dll

Declaration

[DefaultValue(false)]
[XtraSerializableProperty]
public virtual bool PrintSelectedRowsOnly { get; set; }

Property Value

Type Default Description
Boolean **false**

true if only only the focused/selected rows are printed/exported; otherwise, false

Property Paths

You can access this nested property as listed below:

Object Type Path to PrintSelectedRowsOnly
AdvBandedGridView
.OptionsPrint.PrintSelectedRowsOnly
BandedGridView
.OptionsPrint.PrintSelectedRowsOnly
GridView
.OptionsPrint.PrintSelectedRowsOnly

Remarks

If multiple row(card) selection is disabled and the PrintSelectedRowsOnly property is set to true, only the focused row/card is printed/exported. If multiple selection is enabled and the PrintSelectedRowsOnly property is set to true, only the selected rows/cards (ColumnView.GetSelectedRows) are printed/exported.

If the PrintSelectedRowsOnly property is set to false, all rows/cards are printed/exported.

See Also