.
     public short dmColor;
	
.
        short dmColor;
	
.
    Public Property dmColor() As Short
 
	
.
    public short dmColor; // See note below!
	
.
    Public dmColor As Short
	
.
DM, DMCOLLATE, DMCOLOR
Defines the values for the dmDuplex-Field of the [DEVMODE] struct.
1/31/2014 12:30:51 PM - -74.46.76.243
Defines the values for the dmCollate-Field of the [DEVMODE] struct.
9/12/2013 1:21:42 AM - anonymous
Defines the values for the dmColor-Field of the [DEVMODE] struct.
9/12/2013 1:31:58 AM - anonymous
 
	
.
public short dmColor;
	
.
public DMCOLOR dmColor;
	
.
See the DMCOLOR, DMDUP and DMCOLLATE enums for more details.
Defines the values for the dmColor-Field of the [DEVMODE] struct.
9/12/2013 1:31:58 AM - anonymous
Defines the values for the dmDuplex-Field of the [DEVMODE] struct.
9/12/2013 1:39:03 AM - anonymous
Defines the values for the dmCollate-Field of the [DEVMODE] struct.
9/12/2013 1:21:42 AM - anonymous
 
	
.
    public short dmColor;
 
	
.
Contains information about the initialization and environment of a printer or a display device.
1/19/2017 5:13:27 AM - tonyedgecombe-82.69.13.77
 
	
.
  internal enum DMCOLOR : short
	
.
    DMCOLOR_UNKNOWN = 0,
	
.
    DMCOLOR_MONOCHROME = 1,
	
.
    DMCOLOR_COLOR = 2
	
.
The definition of DMCOLOR_UNKNOWN is only to satisfy the rule, that every enum should have a zero value.
	
.