PowerTools SPREAD for Windows Forms 8.0J
GetPrintPageCount メソッド


印刷するシートのインデックス。
指定したシートを印刷するのに必要なページ数を取得します。
構文
'Declaration
 
Public Function GetPrintPageCount( _
   ByVal sheet As Integer _
) As Integer
'使用法
 
Dim instance As FpSpread
Dim sheet As Integer
Dim value As Integer
 
value = instance.GetPrintPageCount(sheet)
public int GetPrintPageCount( 
   int sheet
)

パラメータ

sheet
印刷するシートのインデックス。

戻り値の型

シートを印刷するページ数を表す Integer
次のサンプルコードは、ページ数を取得します。
FarPoint.Win.Spread.FpSpread fpSpread1 = new FarPoint.Win.Spread.FpSpread();
FarPoint.Win.Spread.SheetView shv = new FarPoint.Win.Spread.SheetView();
fpSpread1.Location = new Point(10, 10);
fpSpread1.Height = 200;
fpSpread1.Width = 400;
Controls.Add(fpSpread1);
fpSpread1.Sheets.Add(shv);
int i;
i = fpSpread1.GetPrintPageCount(0);
listBox1.Items.Add(i.ToString());
Dim fpSpread1 As New FarPoint.Win.Spread.FpSpread()
Dim shv As New FarPoint.Win.Spread.SheetView()
fpSpread1.Location = New Point(10, 10)
fpSpread1.Height = 200
fpSpread1.Width = 400
Controls.Add(fpSpread1)
fpSpread1.Sheets.Add(shv)
Dim i As Integer
i = fpSpread1.GetPrintPageCount(0)
ListBox1.Items.Add(i.ToString())
参照

FpSpread クラス
FpSpread メンバ

開発者ガイド

印刷

 

 


© 2004-2015, GrapeCity inc. All rights reserved.