C1Report ドキュメントから PDF ブックマークを削除するには
または
Visual Basic コードの書き方
| Visual Basic |
コードのコピー
|
|---|---|
' OutlineRootLevel を -1 に設定します。
Me.C1Report1.OutlineRootLevel = - 1
Me.C1Report1.RenderToFile("report.pdf", C1.Win.C1Report.FileFormatEnum.PDF)
' または、PDF フィルタを作成し、アウトラインを無効にします。
Dim f As New C1.Win.C1Report.PdfFilter("report.pdf")
f.Outline = False
Me.C1Report1.RenderToFilter(f)
|
|
C# コードの書き方
| C# |
コードのコピー
|
|---|---|
// OutlineRootLevel を -1 に設定します。
this.c1Report1.OutlineRootLevel = -1;
this.c1Report1.RenderToFile("report.pdf", C1.Win.C1Report.FileFormatEnum.PDF);
// または、PDF フィルタを作成し、アウトラインを無効にします。
C1. C1Report.PdfFilter f = new C1. C1Report.PdfFilter("report.pdf");
|
|