Hello,
How can we get the value of UltraGrid row wise?
or
How can we get the value of Ultragrid cell wise?
Please help me in solving the issue..
Waiting for your reply !!!!
Could you please let me know what do you mean by " value of the UltraGrid Row"? If you want to get the underlying object from the UltraGrid row than you could use the following :
ultraGrid1.DisplayLayout.Rows[Index].ListObject
About the cells values you could get it through the .Cells[Index].Value like:
ultraGrid1.DisplayLayout.Rows[Index].Cells["Column Name"].Value
Please let me know if you have any further questions.
But I want to provide values to specific column of ultra grid
Hi
thanks for ur suggestion :)