MESCIUS SPREAD for ASP.NET 10.0J
PrintMargin コンストラクタ(Int32,Int32,Int32,Int32,Int32,Int32)

左余白のサイズ(1/100インチ単位)
上余白のサイズ(1/100インチ単位)
右余白のサイズ(1/100インチ単位)
下余白のサイズ(ピクセル単位)。
ヘッダ余白のサイズ(1/100インチ単位)
フッタ余白のサイズ(1/100インチ単位)
指定した余白を持つ新しいPrintMarginオブジェクトを作成します。
構文
'Declaration
 
Public Function New( _
   ByVal left As Integer, _
   ByVal top As Integer, _
   ByVal right As Integer, _
   ByVal bottom As Integer, _
   ByVal header As Integer, _
   ByVal footer As Integer _
)
public PrintMargin( 
   int left,
   int top,
   int right,
   int bottom,
   int header,
   int footer
)

パラメータ

left
左余白のサイズ(1/100インチ単位)
top
上余白のサイズ(1/100インチ単位)
right
右余白のサイズ(1/100インチ単位)
bottom
下余白のサイズ(ピクセル単位)。
header
ヘッダ余白のサイズ(1/100インチ単位)
footer
フッタ余白のサイズ(1/100インチ単位)
次のサンプルコードは、印刷の余白を設定します。
FarPoint.Web.Spread.PrintMargin m = new FarPoint.Web.Spread.PrintMargin(10, 10, 10, 10, 10, 10);
FarPoint.Web.Spread.PrintInfo pi = new FarPoint.Web.Spread.PrintInfo();
pi.Margin = m;
FpSpread1.ActiveSheetView.PrintInfo = pi;
FpSpread1.SavePdf("c:\\test.pdf");
Dim m As New FarPoint.Web.Spread.PrintMargin(10, 10, 10, 10, 10, 10)
Dim pi As New FarPoint.Web.Spread.PrintInfo
pi.Margin = m
FpSpread1.ActiveSheetView.PrintInfo = pi
FpSpread1.SavePdf("c:\test.pdf")
参照

PrintMargin クラス
PrintMargin メンバ
オーバーロード一覧

 

 


© MESCIUS inc. All rights reserved.