PowerTools ActiveReports for .NET 11.0J
Options プロパティ
使用例 

エクスポートしたPDFドキュメントをビューワで表示したときの状態やドキュメント情報のオプション指定が行えるオブジェクトを返します。
構文
'宣言
 
Public ReadOnly Property Options As PdfDocumentOptions
public PdfDocumentOptions Options {get;}
使用例
GrapeCity.ActiveReports.Export.Pdf.Section.PdfExport p = new GrapeCity.ActiveReports.Export.Pdf.Section.PdfExport();
p.Options.Application = "Mortimer's Reporting Software";
p.Options.Author = "Mortimer";
p.Options.CenterWindow = true;
p.Options.DisplayMode = GrapeCity.ActiveReports.Export.Pdf.Section.DisplayMode.Thumbs;
p.Options.DisplayTitle = true;
p.Options.FitWindow = true;
p.Options.HideMenubar = true;
p.Options.HideToolbar = true;
p.Options.HideWindowUI = true;
p.Options.Keywords = "annual";
Dim p As New GrapeCity.ActiveReports.Export.Pdf.Section.PdfExport
With p.Options
    .Application = "Mortimer's Reporting Software"
    .Author = "Mortimer"
    .CenterWindow = True
    .DisplayMode = GrapeCity.ActiveReports.Export.Pdf.Section.DisplayMode.Thumbs
    .DisplayTitle = True
    .FitWindow = True
    .HideMenubar = True
    .HideToolbar = True
    .HideWindowUI = True
    .Keywords = "annual"
参照

関連項目

PdfExport クラス
PdfExport メンバ
PdfDocumentOptions

 

 


©2003-2017 GrapeCity inc. All rights reserved.