windowsforms-devexpress-dot-xtragrid-dot-views-dot-grid-dot-gridoptionsprint.md
Gets or sets whether print appearances are used when the grid control is printed/exported.
Namespace : DevExpress.XtraGrid.Views.Grid
Assembly : DevExpress.XtraGrid.v25.2.dll
NuGet Packages : DevExpress.Win.Grid, DevExpress.Win.Navigation
[DefaultValue(true)]
[XtraSerializableProperty]
public virtual bool UsePrintStyles { get; set; }
<DefaultValue(True)>
<XtraSerializableProperty>
Public Overridable Property UsePrintStyles As Boolean
| Type | Default | Description |
|---|---|---|
| Boolean | true |
true to use print appearances when the grid control is printed/exported; false to use View appearances.
|
You can access this nested property as listed below:
| Object Type | Path to UsePrintStyles |
|---|---|
| GridView |
.OptionsPrint .UsePrintStyles
|
If the UsePrintStyles option is set to true , the appearance settings used to paint the View elements when the grid control is printed are specified by the View’s GridView.AppearancePrint property. Otherwise, the appearance settings provided by the GridView.Appearance property are used.
See Also