Spread Windows Forms 12.0 Product Documentation
SetPageBreak Method (DefaultSheetAxisModel)
Example 


FarPoint.Win.Spread Assembly > FarPoint.Win.Spread.Model Namespace > DefaultSheetAxisModel Class : SetPageBreak Method
Row or column index
Whether the page break occurs
Sets whether a page break occurs at the specified row or column.
Syntax
'Declaration
 
Public Overrides Sub SetPageBreak( _
   ByVal index As Integer, _
   ByVal value As Boolean _
) 
'Usage
 
Dim instance As DefaultSheetAxisModel
Dim index As Integer
Dim value As Boolean
 
instance.SetPageBreak(index, value)
public override void SetPageBreak( 
   int index,
   bool value
)

Parameters

index
Row or column index
value
Whether the page break occurs
Example
This example sets a page break before the specified column.
FarPoint.Win.Spread.Model.DefaultSheetAxisModel dsam = new FarPoint.Win.Spread.Model.DefaultSheetAxisModel();
dsam = (FarPoint.Win.Spread.Model.DefaultSheetAxisModel)fpSpread1.ActiveSheet.Models.ColumnAxis;
dsam.SetPageBreak(10, true);
Dim dsam As New FarPoint.Win.Spread.Model.DefaultSheetAxisModel()
dsam = fpSpread1.ActiveSheet.Models.ColumnAxis
dsam.SetPageBreak(10, True)
See Also

Reference

DefaultSheetAxisModel Class
DefaultSheetAxisModel Members