FarPoint.Win.SpreadJ アセンブリ > FarPoint.Win.Spread 名前空間 > FpSpread クラス > GetColumnPageBreaks メソッド : GetColumnPageBreaks(Int32) メソッド |
'Declaration Public Overloads Function GetColumnPageBreaks( _ ByVal sheet As Integer _ ) As Integer()
FarPoint.Win.Spread.PrintInfo pi = new FarPoint.Win.Spread.PrintInfo(); pi.UseMax =false; fpSpread1.Sheets[0].PrintInfo=pi; fpSpread1.Sheets[0].SetColumnPageBreak(5,true); // Button Click int[] i; i = fpSpread1.GetColumnPageBreaks(0); foreach (object o in i) { listBox1.Items.Add(o); }
Dim pi As New FarPoint.Win.Spread.PrintInfo() pi.UseMax = False FpSpread1.Sheets(0).PrintInfo = pi FpSpread1.Sheets(0).SetColumnPageBreak(5, True) ' Code in button click event Dim i() As Integer Dim o As Object i = FpSpread1.GetColumnPageBreaks(0) For Each o In i ListBox1.Items.Add(o) Next