LEADTOOLS Image File Support (Leadtools.Codecs assembly) Send comments on this topic. | Back to Introduction - All Topics | Help Version 17.0.3.29
MultiPageSheet Property
See Also 
Leadtools.Codecs Namespace > CodecsXlsLoadOptions Class : MultiPageSheet Property



Gets or sets a value that indicates whether to draw multiple sheets per page.

Syntax

Visual Basic (Declaration) 
Public Property MultiPageSheet As Boolean
Visual Basic (Usage)Copy Code
Dim instance As CodecsXlsLoadOptions
Dim value As Boolean
 
instance.MultiPageSheet = value
 
value = instance.MultiPageSheet
C# 
public bool MultiPageSheet {get; set;}
C++/CLI 
public:
property bool MultiPageSheet {
   bool get();
   void set (    bool value);
}

Property Value

true to draw multiple sheets per page if the final page size is greater than the sheet size, false to always draw one sheet per page.

Example

For an example, refer to CodecsXlsLoadOptions.

Remarks

Depending on the current rasterization options set with CodecsRasterizeDocumentLoadOptions, the resulting physical render size of the page can hold more than one sheet. If the value of MultiPageSheet is set to true, then as many sheets as possible will be rendered on the same page if the size permits. Otherwise, exactly one sheet per page will be used.

Notice that if the sheet size is larger than the page size specified by the user, the sheet will be cropped regardless of the setting of this property.

Requirements

Target Platforms: Silverlight, Windows XP, Windows Server 2003 family, Windows Server 2008 family, Windows Vista, Windows 7, MAC OS/X (Intel Only)

See Also