The PageMode property determines how the document should be displayed when opened using Acrobat ReaderĀ®.
BSTR PageMode
PageMode
[in, out] String value representing the way the document should be opened. The list of possible values is in the remarks section.
Possible values for the PageMode property as of the PDF specifications 1.4:
|
Options |
Description |
|
"UseNone" |
Neither document outline nor thumbnail images visible. |
|
"UseOutlines" |
Document outline visible. |
|
"UseThumbs" |
Thumbnail images visible. |
|
"FullScreen" |
Full-screen mode, with no menu bar, window controls, or any other window visible. |
|
|
For ActiveX:Dim doc As New CDIntfEx.Document 'This function reguires a call to the SetLicenseKey () doc.SetLicenseKey strLicensTo, stractivationcode 'Open existing PDF document doc.OpenEx "c:\temp\sample.pdf", "" doc.PageMode = "UseThumbs" 'Save changes doc.Save "c:\temp\UseThumbs.pdf" |