We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
PageMode
1 parent b8f07d6 commit bda6c41Copy full SHA for bda6c41
1 file changed
src/structure.rs
@@ -202,6 +202,10 @@ pub enum PageMode {
202
UseThumbs,
203
/// Show the document page in full screen mode, with no chrome.
204
FullScreen,
205
+ /// Show the optional content group panel. PDF 1.5+.
206
+ UseOC,
207
+ /// Show the attachments panel. PDF 1.6+.
208
+ UseAttachments,
209
}
210
211
impl PageMode {
@@ -211,6 +215,8 @@ impl PageMode {
215
Self::UseOutlines => Name(b"UseOutlines"),
212
216
Self::UseThumbs => Name(b"UseThumbs"),
213
217
Self::FullScreen => Name(b"FullScreen"),
218
+ Self::UseOC => Name(b"UseOC"),
219
+ Self::UseAttachments => Name(b"UseAttachments"),
214
220
221
222
0 commit comments