PowerTools ActiveReports for .NET 11.0J
TableOfContents プロパティ (Viewer)
使用例 

TableOfContentsObjectへの参照を取得または設定します。
構文
'宣言
 
Public ReadOnly Property TableOfContents As TocPanel
public TocPanel TableOfContents {get;}

プロパティ値

ビューワの見出し一覧のツリービューオプションの設定に使用するTableOfContentsObject値です。

解説

このプロパティは、コントロールのTableOfContentsObjectコンポーネントのオプションの設定に使用します。

使用例
private void arv_Load(object sender, System.EventArgs e)
{
    rptDD rpt = new rptDD();
    rpt.Run();
    arv.Document = rpt.Document;
    
    arv.TableOfContents.Enabled = true;
    arv.TableOfContents.Text = "Country";
    arv.TableOfContents.Visible = true;
    arv.TableOfContents.Width = 150;
}
Private Sub arv_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles arv.Load
    Dim rpt As New rptDD
    rpt.Run()
    arv.Document = rpt.Document

    arv.TableOfContents.Enabled = True
    arv.TableOfContents.Text = "Country"
    arv.TableOfContents.Visible = True
    arv.TableOfContents.Width = 150
End Sub
参照

関連項目

Viewer クラス
Viewer メンバ

 

 


©2003-2017 GrapeCity inc. All rights reserved.