←Select platform

MayHaveDifferentPageSizes Property

Summary

Hint to the loader that the document may contain pages with different sizes.

Syntax
C#
C++/CLI
Java
Python
public bool MayHaveDifferentPageSizes {get; set;} 
public:  
   property bool MayHaveDifferentPageSizes 
   { 
      bool get() 
      void set(bool value) 
   } 
public boolean getMayHaveDifferentPageSizes() 
public void setMayHaveDifferentPageSizes(boolean value) 
MayHaveDifferentPageSizes # get and set (LoadDocumentOptions) 

Property Value

true if the document may contain pages with different sizes; otherwise, false. Default value is false.

Remarks

The document factory tries to create a valid LEADDocument object and return it to the user as quickly as possible. During the load operation, the Pages instance must be initialized with page size and resolution. By default, the factory will parse the first page in the document, obtain its size and resolution and then re-use the same value for all pages. This done to speed up the loading process and return control to the user as soon as possible.

Some document formats such as TIF, Microsoft Office formats, and PDF support having pages with different sizes. Although rare, the above approach may result in creating pages with a wrong size (equal to the size of the first page). Having pages with the wrong size will not affect generating the images or SVG data for the page. However, it may be required in other scenarios such as when parsing text or using annotations. If you have documents that contain different page sizes then it is best to set the value of MayHaveDifferentPageSizes to true. The factory will then get the size and resolution information for each page individually, which may result in a slower load operation.

Requirements

Target Platforms

Help Version 22.0.2023.4.21
Products | Support | Contact Us | Intellectual Property Notices
© 1991-2023 LEAD Technologies, Inc. All Rights Reserved.

Leadtools.Document Assembly

Products | Support | Contact Us | Intellectual Property Notices
© 1991-2023 LEAD Technologies, Inc. All Rights Reserved.