Class PrintSettings
Represents print settings.
Inheritance
Namespace: Telerik.Windows.Documents.Fixed.Print
Assembly: Telerik.Windows.Controls.FixedDocumentViewers.dll
Syntax
public class PrintSettings : Object
Constructors
PrintSettings()
PrintSettings(String, Boolean)
Initializes a new instance of the PrintSettings class.
Declaration
public PrintSettings(string documentName, bool useDefaultPrinter)
Parameters
System.String
documentName
Name of the document. |
System.Boolean
useDefaultPrinter
The use default printer. |
PrintSettings(String, Boolean, Boolean)
Initializes a new instance of the PrintSettings class.
Declaration
public PrintSettings(string documentName, bool useDefaultPrinter, bool forceVectorPrinting)
Parameters
System.String
documentName
Name of the document. |
System.Boolean
useDefaultPrinter
The use default printer. |
System.Boolean
forceVectorPrinting
The force vector printing. |
PrintSettings(String, Boolean, Boolean, Double)
Initializes a new instance of the PrintSettings class.
Declaration
public PrintSettings(string documentName, bool useDefaultPrinter, bool forceVectorPrinting, double opacityThreshold)
Parameters
System.String
documentName
Name of the document. |
System.Boolean
useDefaultPrinter
The use default printer. |
System.Boolean
forceVectorPrinting
The force vector printing. |
System.Double
opacityThreshold
The opacity threshold. |
Properties
Default
Gets the default.
Declaration
public static PrintSettings Default { get; }
Property Value
PrintSettings
The default. |
DocumentName
Gets or sets the name of the document.
Declaration
public string DocumentName { get; set; }
Property Value
System.String
The name of the document. |
ForceVector
Gets or sets the force vector.
Declaration
public bool ForceVector { get; set; }
Property Value
System.Boolean
The force vector. |
OpacityThreshold
Gets or sets the opacity threshold.
Declaration
public double OpacityThreshold { get; set; }
Property Value
System.Double
The opacity threshold. |
PageMargins
Gets or sets the page margins.
Declaration
public Thickness PageMargins { get; set; }
Property Value
System.Windows.Thickness
The page margins. |
UseDefaultPrinter
Gets or sets the use default printer.
Declaration
public bool UseDefaultPrinter { get; set; }
Property Value
System.Boolean
The use default printer. |