Gets or sets the document resolution (in dots per inch) of the resulting document.
Syntax
Visual Basic (Declaration) | |
---|
Public Property DocumentResolution As Integer |
Visual Basic (Usage) | Copy Code |
---|
Dim instance As DocumentOptions
Dim value As Integer
instance.DocumentResolution = value
value = instance.DocumentResolution
|
C# | |
---|
public int DocumentResolution {get; set;} |
C++/CLI | |
---|
public:
property int DocumentResolution {
int get();
void set (int value);
} |
Return Value
Document resolution value given in dots per inch unit and it controls the dimensions of the resulting document. Default value is 0
(use the resolution of the actual page).
Example
Remarks
Requirements
Target Platforms: Microsoft .NET Framework 3.0, Windows XP, Windows Server 2003 family, Windows Server 2008 family
See Also