Gets or sets whether to show the maximum number of rows on the last page.
Syntax
Visual Basic (Declaration) | |
---|
Public Property PageMaxAlign As Boolean |
Visual Basic (Usage) | Copy Code |
---|
Dim instance As SheetView
Dim value As Boolean
instance.PageMaxAlign = value
value = instance.PageMaxAlign |
C# | |
---|
public bool PageMaxAlign {get; set;} |
Property Value
Boolean:
true to display the maximum number;
false otherwise
Remarks
Example
This example only displays the rows on the last page that were not displayed on the previous page.
C# | Copy Code |
---|
FpSpread1.ActiveSheetView.RowCount = 54;
FpSpread1.ActiveSheetView.PageMaxAlign = false;
|
Visual Basic | Copy Code |
---|
FpSpread1.ActiveSheetView.RowCount = 54
FpSpread1.ActiveSheetView.PageMaxAlign = False |
Requirements
Target Platforms: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family, Windows Vista, Windows Server 2008 family
See Also