ドキュメントデバイス
概要
DocumentDevice は .NET 用の Aspose.PDF FOSS のクラスです。
全ドキュメントのレンダリングデバイス用抽象基底クラス。
このクラスは .NET プログラムで DocumentDevice オブジェクトを操作するための 4 つのメソッドを提供します。
利用可能なメソッドは次のとおりです: Process。
すべてのパブリック メンバーは、Aspose.PDF FOSS for .NET パッケージをインストールした後、任意の .NET アプリケーションからアクセス可能です。
メソッド
| Signature | Description |
|---|---|
Process(document: Document, output: Stream) | ドキュメントのすべてのページを output にレンダリングします。 |
Process(document: Document, outputFileName: string) | ドキュメントのすべてのページを outputFileName にレンダリングします。 |
Process(document: Document, fromPage: int, toPage: int, output: Stream) | ドキュメントの fromPage.toPage(1ベース、包括) を output にレンダリングします。 |
Process(document: Document, fromPage: int, toPage: int, outputFileName: string) | ドキュメントの fromPage.toPage(1ベース、包括) を outputFileName にレンダリングします。 |