我的用户ultragrid
定义visible
和invisible
操作中有许多列。现在我必须检查该列是否是column
网格中的第一个。因为我有一些在我无法获得该列columns
的帮助下明确绑定。index
始终显示与column
第一个相同。
//代码
For Each UltraGridColumn In Me.TransactionsGrid.Rows.Band.Columns
'Get the first cell column in the grid
UltraGridCell = UltraGridRow.Cells(UltraGridColumn)
If ('Check Here') Then
'Set the cell image
UltraGridCell.Appearance.Image = My.Resources.Tran_comment_161
UltraGridCell.Appearance.ImageHAlign = HAlign.Right
UltraGridCell.Appearance.ImageVAlign = VAlign.Top
Else
UltraGridCell.Appearance.ResetImage()
End If
Next
如何做到这一点?