Skip to main content

PrinterSettingsUsing.AllSettingsUsed Property

Gets a value indicating whether or not all of the default printer settings are used for printing a report.

Namespace: DevExpress.XtraPrinting

Assembly: DevExpress.Printing.v23.2.Core.dll

NuGet Package: DevExpress.Printing.Core

Declaration

[Browsable(false)]
public bool AllSettingsUsed { get; }

Property Value

Type Description
Boolean

true, if all of the default printer settings are used for printing a report; otherwise, false.

Property Paths

You can access this nested property as listed below:

Object Type Path to AllSettingsUsed
XtraReport
.DefaultPrinterSettingsUsing .AllSettingsUsed

Remarks

The default printer settings include the PrinterSettingsUsing.UsePaperKind and PrinterSettingsUsing.UseLandscape properties. If both these properties are set to true, the AllSettingsUsed property will return true as well.

The default printer is the printer set as the default in the operating system. To override the default printer settings in your application, use the static properties and methods of the PageSettingsHelper class.

See Also