Hi
How can I determine the row coordinate in a ultraGrid?
For example, in UltraTree, we can using Node.Bounds.Top and Node.Bounds.Bottom to find the Y coordinate of that node in the UltraTree. How can I see the similar thing in ultraGrid for a row?
Thanks,
Xin
Hello Xin, I believe that you can use the GetUiElement on the row, this will return you a UIElement that has rectangle property and easily you can get the Y coordinate form it.Here is sample snipped retrieved form row object: UIElement element = e.Row.GetUIElement(); int ycord = element.Rect.Y;I hope this helps.Sincerely,DimiDeveloper Support EngineerInfragistics, Inc.
Hi Dimi,
Thanks for your quick reply, it works.
Thank you