Renderer1.Render

Render(IDevice, TDocument)

レンダリングの方法を定義します!:TDocument指定されたIDevice.

public void Render(IDevice device, TDocument document)
パラメータタイプ説明
deviceIDevice出力デバイス。
documentTDocumentドキュメント。

関連項目


Render(IDevice, TDocument, TimeSpan)

レンダリングの方法を定義します!:TDocument指定されたIDevice . リソース、アクティブなタイマー、アニメーション タスク、または指定されたタイムアウトをロードするためのネットワーク操作がなくなると、レンダリングが実行されます。

public void Render(IDevice device, TDocument document, TimeSpan timeout)
パラメータタイプ説明
deviceIDevice出力デバイス。
documentTDocumentドキュメント。
timeoutTimeSpanあTimeSpan待機するミリ秒数を表す、またはTimeSpanこれは、無期限に待機する -1 ミリ秒を表します。

関連項目


Render(IDevice, TDocument, int)

レンダリングの方法を定義します!:TDocument指定されたIDevice . リソース、アクティブなタイマー、アニメーション タスク、または指定されたタイムアウトをロードするためのネットワーク操作がなくなると、レンダリングが実行されます。

public void Render(IDevice device, TDocument document, int timeout)
パラメータタイプ説明
deviceIDevice出力デバイス。
documentTDocumentドキュメント。
timeoutInt32待機するミリ秒数を表すミリ秒数、または無期限に待機する -1 ミリ秒。

関連項目


Render(IDevice, params TDocument[])

複数をレンダリングする方法を定義します!:TDocument具体的にIDevice.

public void Render(IDevice device, params TDocument[] documents)
パラメータタイプ説明
deviceIDevice出力デバイス。
documentsTDocument[]レンダリングするドキュメント。

関連項目


Render(IDevice, int, params TDocument[])

複数をレンダリングする方法を定義します!:TDocument具体的にIDevice . リソース、アクティブなタイマー、アニメーション タスク、または指定されたタイムアウトをロードするためのネットワーク操作がなくなると、レンダリングが実行されます。

public void Render(IDevice device, int timeout, params TDocument[] documents)
パラメータタイプ説明
deviceIDevice出力デバイス。
timeoutInt32待機するミリ秒数を表すミリ秒数、または無期限に待機する -1 ミリ秒。
documentsTDocument[]レンダリングするドキュメント。

関連項目


Render(IDevice, TimeSpan, params TDocument[])

複数をレンダリングする方法を定義します!:TDocument具体的にIDevice . リソース、アクティブなタイマー、アニメーション タスク、または指定されたタイムアウトをロードするためのネットワーク操作がなくなると、レンダリングが実行されます。

public abstract void Render(IDevice device, TimeSpan timeout, params TDocument[] documents)
パラメータタイプ説明
deviceIDevice出力デバイス。
timeoutTimeSpanあTimeSpan待機するミリ秒数を表す、またはTimeSpanこれは、無期限に待機する -1 ミリ秒を表します。
documentsTDocument[]レンダリングするドキュメント。

関連項目