Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

GridOptionsPrint.PrintSelectedRowsOnly Property

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

Namespace: DevExpress.XtraGrid.Views.Grid

Assembly: DevExpress.XtraGrid.v24.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