foreach を使用して列ごとにグリッドにループしています。1 つの列にループしている間に、検証を行い、次の表示列にループする必要があります。これは検証であり、列のセルの画像をリセットします。
//コード
For Each col In Me.TransactionsGrid.Rows.Band.Columns
If (col.Hidden = False) Then
'Get the first cell of the first column in the grid
cell= row.Cells(col.Index)
'Set the cell image
cell.Appearance.Image = My.Resources.Tran_comment_161
cell.Appearance.ImageHAlign = HAlign.Right
cell.Appearance.ImageVAlign = VAlign.Top
'Loop in to the next visible column and reset the image of the cell
//Code here
cell= row.Cells(UltraGridColumn.Index + 1)
'Reset the cell image
cell.Appearance.ResetImage()
Exit For
End If
Next
どうすればこれを達成できますか?