Aspose::Pdf::Facades::ViewerPreference Class Referencefinal

Describes viewer prefereces (page mode, non full screen page mode, page layout). More...

#include "ViewerPreference.h"

Inherits System::Object.

Static Public Attributes

static constexpr ASPOSE_PDF_SHARED_API int32_t PageModeUseOC = 1048576
 Optional content group panel visible. More...
 
static constexpr ASPOSE_PDF_SHARED_API int32_t DisplayDocTitle = 262144
 A flag specifying whether the window�s title bar should display the document title More...
 
static constexpr ASPOSE_PDF_SHARED_API int32_t NonFullScreenPageModeUseOC = 524288
 Optional content group panel visible. More...
 
static constexpr ASPOSE_PDF_SHARED_API int32_t PageLayoutSinglePage = 1
 Display one page at a time. More...
 
static constexpr ASPOSE_PDF_SHARED_API int32_t PageLayoutOneColumn = 2
 Display the pages in one column. More...
 
static constexpr ASPOSE_PDF_SHARED_API int32_t PageLayoutTwoColumnLeft = 4
 Display the pages in two columns, with odd-numbered pages on the right More...
 
static constexpr ASPOSE_PDF_SHARED_API int32_t PageLayoutTwoColumnRight = 8
 Display the pages in two columns, with odd-numbered pages on the right. More...
 
static constexpr ASPOSE_PDF_SHARED_API int32_t PageModeUseNone = 16
 Neither document outline nor thumbnail images visible More...
 
static constexpr ASPOSE_PDF_SHARED_API int32_t PageModeUseOutlines = 32
 Document outline visible. More...
 
static constexpr ASPOSE_PDF_SHARED_API int32_t PageModeUseThumbs = 64
 Thumbnail images visible. More...
 
static constexpr ASPOSE_PDF_SHARED_API int32_t PageModeFullScreen = 128
 Full-screen mode, with no menu bar, window controls, or any other window visible. More...
 
static constexpr ASPOSE_PDF_SHARED_API int32_t PageModeUseAttachment = 2097152
 Page mode with attacments. More...
 
static constexpr ASPOSE_PDF_SHARED_API int32_t HideToolbar = 256
 A flag specifying whether to hide the conforming reader�s tool bars when the document is active. More...
 
static constexpr ASPOSE_PDF_SHARED_API int32_t HideMenubar = 512
 A flag specifying whether to hide the conforming reader�s menu bar when the document is active. More...
 
static constexpr ASPOSE_PDF_SHARED_API int32_t HideWindowUI = 1024
 A flag specifying whether to hide user interface elements in the document�s window (such as scroll bars and navigation controls), leaving only the document�s contents displayed. More...
 
static constexpr ASPOSE_PDF_SHARED_API int32_t FitWindow = 2048
 A flag specifying whether to resize the document�s window to fit the size of the first displayed page. More...
 
static constexpr ASPOSE_PDF_SHARED_API int32_t CenterWindow = 4096
 A flag specifying whether to position the document�s window in the center of the screen. More...
 
static constexpr ASPOSE_PDF_SHARED_API int32_t NonFullScreenPageModeUseNone = 8192
 Neither document outline nor thumbnail images visible. More...
 
static constexpr ASPOSE_PDF_SHARED_API int32_t NonFullScreenPageModeUseOutlines = 16384
 Document outline visible. More...
 
static constexpr ASPOSE_PDF_SHARED_API int32_t NonFullScreenPageModeUseThumbs = 32768
 Thumbnail images visible More...
 
static constexpr ASPOSE_PDF_SHARED_API int32_t DirectionL2R = 65536
 Text reading order left to right. More...
 
static constexpr ASPOSE_PDF_SHARED_API int32_t DirectionR2L = 131072
 Text reading order right to left. More...
 
static constexpr ASPOSE_PDF_SHARED_API int32_t Simplex = 4194304
 Print single-sided. More...
 
static constexpr ASPOSE_PDF_SHARED_API int32_t DuplexFlipShortEdge = 8388608
 Duplex and flip on the short edge of the sheet. More...
 
static constexpr ASPOSE_PDF_SHARED_API int32_t DuplexFlipLongEdge = 16777216
 Duplex and flip on the short edge of the sheet. More...
 
static constexpr ASPOSE_PDF_SHARED_API int32_t PrintScalingAppDefault = static_cast<int32_t>(1 << 25)
 The conforming reader's default print scaling. More...
 
static constexpr ASPOSE_PDF_SHARED_API int32_t PrintScalingNone = static_cast<int32_t>(1 << 26)
 No page scaling. More...
 

Additional Inherited Members

- Public Types inherited from System::Object
typedef SmartPtr< Objectptr
 Alias for smart pointer type. More...
 
- Public Member Functions inherited from System::Object
ASPOSECPP_SHARED_API Object ()
 Creates object. Initializes all internal data structures. More...
 
virtual ASPOSECPP_SHARED_API ~Object ()
 Destroys object. Frees all internal data structures. More...
 
ASPOSECPP_SHARED_API Object (Object const &x)
 Copy constructor. Doesn't copy anything, really, just initializes new object and enables copy constructing subclasses. More...
 
Objectoperator= (Object const &x)
 Assignment operator. Doesn't copy anything, really, just initializes new object and enables copy constructing subclasses. More...
 
ObjectSharedRefAdded ()
 Increments shared reference count. Shouldn't be called directly; instead, use smart pointers or ThisProtector. More...
 
int SharedRefRemovedSafe ()
 Decrements and returns shared reference count. Shouldn't be called directly; instead, use smart pointers or ThisProtector. More...
 
int RemovedSharedRefs (int count)
 Decreases shared reference count by specified value. More...
 
Detail::SmartPtrCounter * WeakRefAdded ()
 Increments weak reference count. Shouldn't be called directly; instead, use smart pointers or ThisProtector. More...
 
void WeakRefRemoved ()
 Decrements weak reference count. Shouldn't be called directly; instead, use smart pointers or ThisProtector. More...
 
Detail::SmartPtrCounter * GetCounter ()
 Gets reference counter data structure associated with the object. More...
 
int SharedCount () const
 Gets current value of shared reference counter. More...
 
ASPOSECPP_SHARED_API void Lock ()
 Implements C# lock() statement locking. Call directly or use LockContext sentry object. More...
 
ASPOSECPP_SHARED_API void Unlock ()
 Implements C# lock() statement unlocking. Call directly or use LockContext sentry object. More...
 
virtual ASPOSECPP_SHARED_API bool Equals (ptr obj)
 Compares objects using C# Object.Equals semantics. More...
 
virtual ASPOSECPP_SHARED_API int32_t GetHashCode () const
 Analog of C# Object.GetHashCode() method. Enables hashing of custom objects. More...
 
virtual ASPOSECPP_SHARED_API String ToString () const
 Analog of C# Object.ToString() method. Enables converting custom objects to string. More...
 
virtual ASPOSECPP_SHARED_API ptr MemberwiseClone () const
 Analog of C# Object.MemberwiseClone() method. Enables cloning custom types. More...
 
virtual ASPOSECPP_SHARED_API const TypeInfoGetType () const
 Gets actual type of object. Analog of C# System.Object.GetType() call. More...
 
virtual ASPOSECPP_SHARED_API bool Is (const TypeInfo &targetType) const
 Check if object represents an instance of type described by targetType. Analog of C# 'is' operator. More...
 
virtual ASPOSECPP_SHARED_API void SetTemplateWeakPtr (uint32_t argument)
 Set n'th template argument a weak pointer (rather than shared). Allows switching pointers in containers to weak mode. More...
 
virtual ASPOSECPP_SHARED_API bool FastCast (const Details::FastRttiBase &helper, void **out_ptr) const
 For internal purposes only. More...
 
template<>
bool Equals (float const &objA, float const &objB)
 Emulates C#-style floating point comparison where two NaNs are considered equal even though according to IEC 60559:1989 NaN is not equal to any value, including NaN. More...
 
template<>
bool Equals (double const &objA, double const &objB)
 Emulates C#-style floating point comparison where two NaNs are considered equal even though according to IEC 60559:1989 NaN is not equal to any value, including NaN. More...
 
template<>
bool ReferenceEquals (String const &str, std::nullptr_t)
 Specialization of Object::ReferenceEquals for case of string and nullptr. More...
 
template<>
bool ReferenceEquals (String const &str1, String const &str2)
 Specialization of Object::ReferenceEquals for case of strings. More...
 
- Static Public Member Functions inherited from System::Object
static bool ReferenceEquals (ptr const &objA, ptr const &objB)
 Compares objects by reference. More...
 
template<typename T >
static std::enable_if<!IsSmartPtr< T >::value, bool >::type ReferenceEquals (T const &objA, T const &objB)
 Compares objects by reference. More...
 
template<typename T >
static std::enable_if<!IsSmartPtr< T >::value, bool >::type ReferenceEquals (T const &objA, std::nullptr_t)
 Reference-compares value type object with nullptr. More...
 
template<typename T1 , typename T2 >
static std::enable_if< IsSmartPtr< T1 >::value &&IsSmartPtr< T2 >::value, bool >::type Equals (T1 const &objA, T2 const &objB)
 Compares reference type objects in C# style. More...
 
template<typename T1 , typename T2 >
static std::enable_if<!IsSmartPtr< T1 >::value &&!IsSmartPtr< T2 >::value, bool >::type Equals (T1 const &objA, T2 const &objB)
 Compares value type objects in C# style. More...
 
static const TypeInfoType ()
 Implements C# typeof(System.Object) construct. More...
 

Detailed Description

Describes viewer prefereces (page mode, non full screen page mode, page layout).

Member Data Documentation

◆ CenterWindow

constexpr ASPOSE_PDF_SHARED_API int32_t Aspose::Pdf::Facades::ViewerPreference::CenterWindow = 4096
static

A flag specifying whether to position the document�s window in the center of the screen.

◆ DirectionL2R

constexpr ASPOSE_PDF_SHARED_API int32_t Aspose::Pdf::Facades::ViewerPreference::DirectionL2R = 65536
static

Text reading order left to right.

◆ DirectionR2L

constexpr ASPOSE_PDF_SHARED_API int32_t Aspose::Pdf::Facades::ViewerPreference::DirectionR2L = 131072
static

Text reading order right to left.

◆ DisplayDocTitle

constexpr ASPOSE_PDF_SHARED_API int32_t Aspose::Pdf::Facades::ViewerPreference::DisplayDocTitle = 262144
static

A flag specifying whether the window�s title bar should display the document title

◆ DuplexFlipLongEdge

constexpr ASPOSE_PDF_SHARED_API int32_t Aspose::Pdf::Facades::ViewerPreference::DuplexFlipLongEdge = 16777216
static

Duplex and flip on the short edge of the sheet.

◆ DuplexFlipShortEdge

constexpr ASPOSE_PDF_SHARED_API int32_t Aspose::Pdf::Facades::ViewerPreference::DuplexFlipShortEdge = 8388608
static

Duplex and flip on the short edge of the sheet.

◆ FitWindow

constexpr ASPOSE_PDF_SHARED_API int32_t Aspose::Pdf::Facades::ViewerPreference::FitWindow = 2048
static

A flag specifying whether to resize the document�s window to fit the size of the first displayed page.

◆ HideMenubar

constexpr ASPOSE_PDF_SHARED_API int32_t Aspose::Pdf::Facades::ViewerPreference::HideMenubar = 512
static

A flag specifying whether to hide the conforming reader�s menu bar when the document is active.

◆ HideToolbar

constexpr ASPOSE_PDF_SHARED_API int32_t Aspose::Pdf::Facades::ViewerPreference::HideToolbar = 256
static

A flag specifying whether to hide the conforming reader�s tool bars when the document is active.

◆ HideWindowUI

constexpr ASPOSE_PDF_SHARED_API int32_t Aspose::Pdf::Facades::ViewerPreference::HideWindowUI = 1024
static

A flag specifying whether to hide user interface elements in the document�s window (such as scroll bars and navigation controls), leaving only the document�s contents displayed.

◆ NonFullScreenPageModeUseNone

constexpr ASPOSE_PDF_SHARED_API int32_t Aspose::Pdf::Facades::ViewerPreference::NonFullScreenPageModeUseNone = 8192
static

Neither document outline nor thumbnail images visible.

◆ NonFullScreenPageModeUseOC

constexpr ASPOSE_PDF_SHARED_API int32_t Aspose::Pdf::Facades::ViewerPreference::NonFullScreenPageModeUseOC = 524288
static

Optional content group panel visible.

◆ NonFullScreenPageModeUseOutlines

constexpr ASPOSE_PDF_SHARED_API int32_t Aspose::Pdf::Facades::ViewerPreference::NonFullScreenPageModeUseOutlines = 16384
static

Document outline visible.

◆ NonFullScreenPageModeUseThumbs

constexpr ASPOSE_PDF_SHARED_API int32_t Aspose::Pdf::Facades::ViewerPreference::NonFullScreenPageModeUseThumbs = 32768
static

Thumbnail images visible

◆ PageLayoutOneColumn

constexpr ASPOSE_PDF_SHARED_API int32_t Aspose::Pdf::Facades::ViewerPreference::PageLayoutOneColumn = 2
static

Display the pages in one column.

◆ PageLayoutSinglePage

constexpr ASPOSE_PDF_SHARED_API int32_t Aspose::Pdf::Facades::ViewerPreference::PageLayoutSinglePage = 1
static

Display one page at a time.

◆ PageLayoutTwoColumnLeft

constexpr ASPOSE_PDF_SHARED_API int32_t Aspose::Pdf::Facades::ViewerPreference::PageLayoutTwoColumnLeft = 4
static

Display the pages in two columns, with odd-numbered pages on the right

◆ PageLayoutTwoColumnRight

constexpr ASPOSE_PDF_SHARED_API int32_t Aspose::Pdf::Facades::ViewerPreference::PageLayoutTwoColumnRight = 8
static

Display the pages in two columns, with odd-numbered pages on the right.

◆ PageModeFullScreen

constexpr ASPOSE_PDF_SHARED_API int32_t Aspose::Pdf::Facades::ViewerPreference::PageModeFullScreen = 128
static

Full-screen mode, with no menu bar, window controls, or any other window visible.

◆ PageModeUseAttachment

constexpr ASPOSE_PDF_SHARED_API int32_t Aspose::Pdf::Facades::ViewerPreference::PageModeUseAttachment = 2097152
static

Page mode with attacments.

◆ PageModeUseNone

constexpr ASPOSE_PDF_SHARED_API int32_t Aspose::Pdf::Facades::ViewerPreference::PageModeUseNone = 16
static

Neither document outline nor thumbnail images visible

◆ PageModeUseOC

constexpr ASPOSE_PDF_SHARED_API int32_t Aspose::Pdf::Facades::ViewerPreference::PageModeUseOC = 1048576
static

Optional content group panel visible.

◆ PageModeUseOutlines

constexpr ASPOSE_PDF_SHARED_API int32_t Aspose::Pdf::Facades::ViewerPreference::PageModeUseOutlines = 32
static

Document outline visible.

◆ PageModeUseThumbs

constexpr ASPOSE_PDF_SHARED_API int32_t Aspose::Pdf::Facades::ViewerPreference::PageModeUseThumbs = 64
static

Thumbnail images visible.

◆ PrintScalingAppDefault

constexpr ASPOSE_PDF_SHARED_API int32_t Aspose::Pdf::Facades::ViewerPreference::PrintScalingAppDefault = static_cast<int32_t>(1 << 25)
static

The conforming reader's default print scaling.

◆ PrintScalingNone

constexpr ASPOSE_PDF_SHARED_API int32_t Aspose::Pdf::Facades::ViewerPreference::PrintScalingNone = static_cast<int32_t>(1 << 26)
static

No page scaling.

◆ Simplex

constexpr ASPOSE_PDF_SHARED_API int32_t Aspose::Pdf::Facades::ViewerPreference::Simplex = 4194304
static

Print single-sided.