Skip to main content

GridOptionsPrint.PrintSelectedRowsOnly Property

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

Namespace: DevExpress.XtraGrid.Views.Grid

Assembly: DevExpress.XtraGrid.v23.2.dll

NuGet Packages: DevExpress.Win.Grid, DevExpress.Win.Navigation

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
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 selected rows/cards (ColumnView.GetSelectedRows) are printed/exported.

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

Note

  • Group rows are printed only if they are selected. Rows displayed within groups that are not selected are not printed.
  • Only data rows are printed if the CheckBoxSelectorField property is specified.
See Also