バージョン

BandName プロパティ

ノードが属する、基になるデータソース内のバンドの名前を取得します。
シンタックス
'宣言
 
Public ReadOnly Property BandName As String
public string BandName {get;}
解説

このノードがバンド ノードの場合、BandName は、ノードによって表されるテーブル、リレーションシップ、またはその他のリスト オブジェクトの名前を示します。これが通常のデータバインド ノードの場合、BandName は、ノードが属するバンドの名前を返します。

使用例
Imports Infragistics.Win
Imports Infragistics.Win.Layout
Imports Infragistics.Win.UltraWinTree

    Private Sub GetBoundNodeInfo(ByVal node As UltraTreeNode)

        If Not node.DataColumnSetResolved Is Nothing Then
            Debug.WriteLine("DataColumnSetResolved = '" + node.DataColumnSetResolved.Key + "'")
        End If

        If Not node.DisplayColumnSetResolved Is Nothing Then
            Debug.WriteLine("DisplayColumnSetResolved = '" + node.DisplayColumnSetResolved.Key + "'")
        End If

        Debug.WriteLine("ListIndex = " + node.ListIndex.ToString())

        If Not node.ListObject Is Nothing Then
            Debug.WriteLine("ListObject = " + node.ListObject.ToString())
        End If

        Debug.WriteLine("IsBandNode = " + node.IsBandNode.ToString())
        Debug.WriteLine("ShowColumnsResolved = " + node.ShowColumnsResolved.ToString())
        Debug.WriteLine("BandName = " + node.BandName.ToString())

    End Sub
using Infragistics.Win;
using Infragistics.Win.Layout;
using Infragistics.Win.UltraWinTree;
using System.Diagnostics;

		private void GetBoundNodeInfo( UltraTreeNode node )
		{
			if ( node.DataColumnSetResolved != null )
				Debug.WriteLine( "DataColumnSetResolved = '" + node.DataColumnSetResolved.Key + "'" );

			if ( node.DisplayColumnSetResolved != null )
				Debug.WriteLine( "DisplayColumnSetResolved = '" + node.DisplayColumnSetResolved.Key + "'" );

			Debug.WriteLine( "ListIndex = " + node.ListIndex.ToString() );

			if ( node.ListObject != null )
				Debug.WriteLine( "ListObject = " + node.ListObject.ToString() );

			Debug.WriteLine( "IsBandNode = " + node.IsBandNode.ToString() );
			Debug.WriteLine( "ShowColumnsResolved = " + node.ShowColumnsResolved.ToString() );

		}
参照