Imports Infragistics.Win
Imports Infragistics.Win.Layout
Imports Infragistics.Win.UltraWinTree
Private Sub GetCellInfo(ByVal node As UltraTreeNode, ByVal column As UltraTreeNodeColumn, ByRef text As String, ByRef value As Object)
text = node.GetCellText(column)
value = node.GetCellValue(column)
End Sub