LocalReport.Render メソッド (String, String, PageCountMode, String, String, String, String[], Warning[])
指定されたページ カウント モードでレポートを処理し、指定された形式で表示します。
名前空間: Microsoft.Reporting.WinForms
アセンブリ: Microsoft.ReportViewer.WinForms (Microsoft.ReportViewer.WinForms.dll 内)
構文
public override byte[] Render(
string format,
string deviceInfo,
PageCountMode pageCountMode,
out string mimeType,
out string encoding,
out string fileNameExtension,
out string[] streams,
out Warning[] warnings
)
public:
virtual array<unsigned char>^ Render(
String^ format,
String^ deviceInfo,
PageCountMode pageCountMode,
[OutAttribute] String^% mimeType,
[OutAttribute] String^% encoding,
[OutAttribute] String^% fileNameExtension,
[OutAttribute] array<String^>^% streams,
[OutAttribute] array<Warning^>^% warnings
) override
override Render :
format:string *
deviceInfo:string *
pageCountMode:PageCountMode *
mimeType:string byref *
encoding:string byref *
fileNameExtension:string byref *
streams:string[] byref *
warnings:Warning[] byref -> byte[]
Public Overrides Function Render (
format As String,
deviceInfo As String,
pageCountMode As PageCountMode,
<OutAttribute> ByRef mimeType As String,
<OutAttribute> ByRef encoding As String,
<OutAttribute> ByRef fileNameExtension As String,
<OutAttribute> ByRef streams As String(),
<OutAttribute> ByRef warnings As Warning()
) As Byte()
パラメーター
format
レポートを表示する形式。 この引数は、表示拡張機能にマップされます。 サポートされる形式には、Excel、PDF、Word、および画像があります。使用可能なレンダリング拡張子にアクセスするには ListRenderingExtensions メソッドを使用します。
- deviceInfo
format パラメーターに指定されている表示拡張機能に必要な、デバイス固有のコンテンツを含んでいる XML 文字列。 特定の出力形式のデバイス情報設定の詳細については、SQL Server オンライン ブックの「デバイス情報設定」(fe718939-7efe-4c7f-87cb-5f5b09caeff4) を参照してください。
- pageCountMode
ページ数モードを指定する PageCountMode 列挙値。
- mimeType
[out] 表示されるレポートの MIME の種類。
- encoding
[out] レポートのコンテンツを表示するときに使用するエンコード。
- fileNameExtension
[out] 出力ファイルに使用するファイル名拡張子。
- streams
[out] ストリーム識別子。 これらの識別子を使用して、レポートに関連付けられている外部リソース (画像など) を表示できます。
- warnings
[出力] レポート処理とレンダリングの間に発生した警告を記述した Warning オブジェクトの配列。
戻り値
Type: System.Byte[]
指定された形式のレポートの Byte 配列。
解説
This method can be used to export and print a report.
After this method completes successfully, the value of pageCountMode determines the default page count mode the LocalReport object uses when you call the M:Microsoft.Reporting.WinForms.LocalReport.GetTotalPages method. For more information, see GetTotalPages.
参照
Render オーバーロード
LocalReport クラス
Microsoft.Reporting.WinForms 名前空間
トップに戻る