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

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

パラメータ

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.