Leadtools.WinForms.CommonDialogs.File Send comments on this topic. | Back to Introduction - All Topics | Help Version 16.5.9.25
MultiPageSheet Property
See Also 
Leadtools.WinForms.CommonDialogs.File Namespace > RasterDialogXlsFileOptions Class : MultiPageSheet Property



Enable or disable loading multipage sheets.

Syntax

Visual Basic (Declaration) 
Public Property MultiPageSheet As Boolean
Visual Basic (Usage)Copy Code
Dim instance As RasterDialogXlsFileOptions
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);
}

Return Value

true to load multipage worksheets; false to load single page

Example

Refer to RasterOpenDialog example.

Remarks

Use the paper dimensions obtained from the user to draw the worksheets. If the sheet dimension is larger than the paper dimensions obtained from user then the sheet will be divided to multiple pages. Each page will have the same dimensions obtained from the user (the sheet will be rendered as multiple sheets). If the sheet size is less than the page dimensions obtained from user then it will be drawn on a single page.

Requirements

Target Platforms: Microsoft .NET Framework 2.0, Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family

See Also