Gets whether a page break occurs at the specified row or column.
Syntax
Visual Basic (Declaration) | |
---|
Public Overridable Function GetPageBreak( _
ByVal index As Integer _
) As Boolean |
Parameters
- index
- Row or column index
Return Value
Boolean:
true if a page break occurs at the specified row or column;
false otherwise
Example
This example gets whether a page break occur before the specified column.
C# | Copy Code |
---|
FarPoint.Win.Spread.Model.BaseSheetAxisModel baseModel;
baseModel = (FarPoint.Win.Spread.Model.BaseSheetAxisModel)fpSpread1.ActiveSheet.Models.ColumnAxis;
baseModel.GetPageBreak(25); |
Visual Basic | Copy Code |
---|
Dim baseModel As FarPoint.Win.Spread.Model.BaseSheetAxisModel
baseModel = FpSpread1.ActiveSheet.Models.ColumnAxis
baseModel.GetPageBreak(25) |
Requirements
Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
See Also