Spread Windows Forms 12.0 Product Documentation
SetColumnPageBreak Method
Example 


FarPoint.Win.Spread Assembly > FarPoint.Win.Spread Namespace > SheetView Class : SetColumnPageBreak Method
Column index
Whether to force a page break before the specified column
Sets whether a forced page break is inserted before the specified column on this sheet when printing.
Syntax
'Declaration
 
Public Sub SetColumnPageBreak( _
   ByVal column As Integer, _
   ByVal value As Boolean _
) 
'Usage
 
Dim instance As SheetView
Dim column As Integer
Dim value As Boolean
 
instance.SetColumnPageBreak(column, value)
public void SetColumnPageBreak( 
   int column,
   bool value
)

Parameters

column
Column index
value
Whether to force a page break before the specified column
Example
This example illustrates the use of this member by returning whether a page break is inserted before the specified column when printing.
bool b;
fpSpread1.ActiveSheet.SetColumnPageBreak(1, true);
b = fpSpread1.ActiveSheet.GetColumnPageBreak(1);
label1.Text = "Is there a page break for column 1 = " + b.ToString();
Dim b As Boolean
FpSpread1.ActiveSheet.SetColumnPageBreak(1, True)
b = FpSpread1.ActiveSheet.GetColumnPageBreak(1)
Label1.Text = "Is there a page break for column 1 = " & b.ToString()
See Also

Reference

SheetView Class
SheetView Members
GetColumnPageBreak Method

User-Task Documentation

Adding a Page Break