PrinterResolution.X Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets the horizontal printer resolution, in dots per inch.
public:
property int X { int get(); void set(int value); };
public:
property int X { int get(); };
public int X { get; set; }
public int X { get; }
member this.X : int with get, set
member this.X : int
Public Property X As Integer
Public ReadOnly Property X As Integer
Property Value
The horizontal printer resolution, in dots per inch, if Kind is set to Custom; otherwise, a dmPrintQuality
value.
Remarks
dmPrintQuality
is a member of the DEVMODE
(device mode) structure, which defines constants that map to printer quality settings. The X property contains the value DMRES_HIGH
if Kind is set to High, DMRES_MEDIUM
if Kind is set to Medium, DMRES_LOW
if Kind is set to Low, and DMRES_DRAFT
if Kind is set to Draft.
For more information, see DEVMODE structure.