ImageGear v26.3 - Updated
ImageGear.Formats.Pdf Assembly / ImageGear.Formats.PDF Namespace / ImGearPDFPrintOptions Class / DevMode Property




In This Topic
    DevMode Property
    In This Topic
    Gets or sets a DEVMODE structure. Optional.
    Syntax
    'Declaration
     
    Public Property DevMode As IntPtr
    'Usage
     
    Dim instance As ImGearPDFPrintOptions
    Dim value As IntPtr
     
    instance.DevMode = value
     
    value = instance.DevMode
    public IntPtr DevMode {get; set;}
    public: __property IntPtr get_DevMode();
    public: __property void set_DevMode( 
       IntPtr value
    );
    public:
    property IntPtr DevMode {
       IntPtr get();
       void set (    IntPtr value);
    }

    Property Value

    A pointer to Windows GDI DEVMODE structure.
    Remarks
    If you do not pass a DEVMODE structure, a new one will be created based on the other properties. The default value is IntPtr.Zero.
    See Also