windowsforms-devexpress-dot-xtragrid-dot-views-dot-grid-dot-gridoptionsprint-2d39c523.md
Gets or sets whether only the focused/selected rows are printed/exported.
Namespace : DevExpress.XtraGrid.Views.Grid
Assembly : DevExpress.XtraGrid.v25.2.dll
NuGet Packages : DevExpress.Win.Grid, DevExpress.Win.Navigation
[DefaultValue(false)]
[XtraSerializableProperty]
public virtual bool PrintSelectedRowsOnly { get; set; }
<DefaultValue(False)>
<XtraSerializableProperty>
Public Overridable Property PrintSelectedRowsOnly As Boolean
| Type | Default | Description |
|---|---|---|
| Boolean | false |
true if only only the focused/selected rows are printed/exported; otherwise, false
|
You can access this nested property as listed below:
| Object Type | Path to PrintSelectedRowsOnly |
|---|---|
| GridView |
.OptionsPrint .PrintSelectedRowsOnly
|
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
See Also