PowerTools SPREAD for Windows Forms 8.0J
PageNumber プロパティ (PrintBackgroundEventArgs)


現在印刷中のページを取得または設定します。
構文
'Declaration
 
Public Property PageNumber As Integer
'使用法
 
Dim instance As PrintBackgroundEventArgs
Dim value As Integer
 
instance.PageNumber = value
 
value = instance.PageNumber
public int PageNumber {get; set;}

プロパティ値

ページ番号を表す Integer
次のサンプルコードは、ピクチャをロードします。
private void fpSpread1_PrintBackground(object sender, FarPoint.Win.Spread.PrintBackgroundEventArgs e) 
{ 
if(e.PageNumber == 1) 
{ 
FarPoint.Win.Picture pic = new FarPoint.Win.Picture(Image.FromFile("c:\\windows\\zapotec.bmp"),
FarPoint.Win.RenderStyle.Normal);
pic.AlignHorz = FarPoint.Win.HorizontalAlignment.Center;
pic.AlignVert = FarPoint.Win.VerticalAlignment.Center;
pic.Paint(e.Graphics, e.SheetRectangle);
}
}
Private Sub FpSpread1_PrintBackground(ByVal sender As Object, ByVal e As
FarPoint.Win.Spread.PrintBackgroundEventArgs) Handles FpSpread1.PrintBackground
If e.PageNumber = 1 Then
Dim pic As New FarPoint.Win.Picture(Image.FromFile("c:/windows/zapotec.bmp"),
FarPoint.Win.RenderStyle.Normal)
pic.AlignHorz = FarPoint.Win.HorizontalAlignment.Center
pic.AlignVert = FarPoint.Win.VerticalAlignment.Center
pic.Paint(e.Graphics, e.SheetRectangle)
End If
End Sub
参照

PrintBackgroundEventArgs クラス
PrintBackgroundEventArgs メンバ

 

 


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