Imports Infragistics.Win
Imports Infragistics.Win.Layout
Imports Infragistics.Win.UltraWinTree
PrivateSub GetCellInfo(ByVal node As UltraTreeNode, ByVal column As UltraTreeNodeColumn, ByRef text AsString, ByRef value AsObject)
text = node.GetCellText(column)
value = node.GetCellValue(column)
End Sub
using Infragistics.Win;
using Infragistics.Win.Layout;
using Infragistics.Win.UltraWinTree;
using System.Diagnostics;
privatevoid GetCellInfo(UltraTreeNode node, UltraTreeNodeColumn column, outstring text, outobject value)
{
text = node.GetCellText(column);
value = node.GetCellValue(column);
}