MESCIUS SPREAD for ASP.NET 10.0J
SavePdf(SheetView,Stream,PdfSecurity) メソッド

印刷するシート
PDFストリームとしてファイルを保存する保存先のストリーム
PDFファイルを暗号化するためのパスワード
指定したシートのPDFストリームへのエクスポートを処理します。
構文
'Declaration
 
Public Overloads Function SavePdf( _
   ByVal sheetView As SheetView, _
   ByVal stream As Stream, _
   ByVal pdfSecurity As PdfSecurity _
) As Boolean

パラメータ

sheetView
印刷するシート
stream
PDFストリームとしてファイルを保存する保存先のストリーム
pdfSecurity
PDFファイルを暗号化するためのパスワード
次のサンプルコードは、PDFに保存します。
System.IO.Stream s;
s = System.IO.File.Open("c:\\test.pdf", System.IO.FileMode.OpenOrCreate);
FpSpread1.SavePdf(s, new FarPoint.PDF.Source.Encryption.PdfSecurity("Test1"));
// FpSpread1.SavePdf(0, s, new FarPoint.PDF.Source.Encryption.PdfSecurity("Test1"));
// FpSpread1.SavePdf(FpSpread1.Sheets[0], s, new FarPoint.PDF.Source.Encryption.PdfSecurity("Test1"));
Dim s As System.IO.Stream
s = System.IO.File.Open("c:\test.pdf", System.IO.FileMode.OpenOrCreate)
FpSpread1.SavePdf(s, New FarPoint.PDF.Source.Encryption.PdfSecurity("Test1"))
'FpSpread1.SavePdf(0, s, New FarPoint.PDF.Source.Encryption.PdfSecurity("Test1"))
'FpSpread1.SavePdf(FpSpread1.Sheets(0), s, New FarPoint.PDF.Source.Encryption.PdfSecurity("Test1"))
参照

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

 

 


© MESCIUS inc. All rights reserved.