0
我必須獲取網格中的列號。獲取Ultragrid中的列號
例如:如果我列的有Name
,Age
,Number
三個網格列和我給headertext
(年齡),它應該返回Number
(2)代表Age
是網格的第2列。
For Each UltraGridColumn In Me.TransactionsGrid.Rows.Band.Columns
If (UltraGridColumn.Hidden = False) Then
'UltraGridColumn.Header.Caption
'Get the cell
UltraGridCell = UltraGridRow.Cells("Number Here")
End If
Next
現在在這裏,我要得到列號這是不hidden
。我有headertext
的列,我需要的號碼。
我該如何做到這一點?
這就是我想要的。謝謝@Steve – iamCR
隨着索引的幫助,我試圖找到細胞必須在其中設置圖像。 – iamCR
可以幫助我在這個問題@Steve。 http://stackoverflow.com/questions/16583718/remove-image-in-a-cell-of-ultragrid – iamCR