Spread Windows Forms 7.0 Product Documentation
SetRowPageBreak Method
See Also  Example Support Options
FarPoint.Win.Spread Assembly > FarPoint.Win.Spread Namespace > SheetView Class : SetRowPageBreak Method


row
Row index
value
Whether to force a page break before the specified row

Glossary Item Box

Sets whether a forced page break is inserted before the specified row on this sheet when printing.

Syntax

Visual Basic (Declaration) 
Public Sub SetRowPageBreak( _
   ByVal row As Integer, _
   ByVal value As Boolean _
) 
Visual Basic (Usage)Copy Code
Dim instance As SheetView
Dim row As Integer
Dim value As Boolean
 
instance.SetRowPageBreak(row, value)
C# 
public void SetRowPageBreak( 
   int row,
   bool value
)

Parameters

row
Row index
value
Whether to force a page break before the specified row

Example

This example illustrates the use of this member by returning whether a page break is inserted before the specified row when printing.
C#Copy Code
bool b;
fpSpread1.ActiveSheet.SetRowPageBreak(0, true);
b = fpSpread1.ActiveSheet.GetRowPageBreak(0);
label1.Text = "Is there a page break set for row 0 = " + b.ToString();
Visual BasicCopy Code
Dim b As Boolean
FpSpread1.ActiveSheet.SetRowPageBreak(0, True)
b = FpSpread1.ActiveSheet.GetRowPageBreak(0)
Label1.Text = "Is there a page break set for row 0 = " & b.ToString()

Requirements

Target Platforms: Windows 2000 Professional (SP4), Windows 2000 Server, Windows 2003 Server (SP1), Windows 2008, Windows XP (SP2), Windows Vista, Windows 7, Windows 8

See Also

© 2002-2014 ComponentOne, a division of GrapeCity. All Rights Reserved.