FarPoint.Win.Spread Assembly > FarPoint.Win.Spread Namespace > FpSpread Class > GetRowPageBreaks Method : GetRowPageBreaks(Int32) Method |
// Form Load FarPoint.Win.Spread.PrintInfo pi = new FarPoint.Win.Spread.PrintInfo(); pi.UseMax =false; fpSpread1.Sheets[0].PrintInfo=pi; fpSpread1.Sheets[0].SetRowPageBreak(5,true); // Button Click int[] i; i = fpSpread1.GetRowPageBreaks(0); foreach (object o in i) { listBox1.Items.Add(o); }
' Code in form load event Dim pi As New FarPoint.Win.Spread.PrintInfo() pi.UseMax = False FpSpread1.Sheets(0).PrintInfo = pi FpSpread1.Sheets(0).SetRowPageBreak(5, True) ' Code in button click event Dim i() As Integer Dim o As Object i = FpSpread1.GetRowPageBreaks(0) For Each o In i ListBox1.Items.Add(o) Next
Target Platforms: Windows 2000 Professional (SP4), Windows 2000 Server, Windows 2003 Server (SP1), Windows 2008, Windows XP (SP2), Windows Vista, Windows 7, Windows 8