Infragistics ultragrid drag
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-30-2010
05:32 AM
07-30-2010
05:32 AM
Infragistics ultragrid drag
Hi we have a infragistics ultragrid control.
How can I make a drag from a particualr row instead of coordinates, I am doing like this:
rownum = ultraGrid.FindRow(1, "KV LBtest1")
or how can i find a coordinates of a row. please answer asap.
How can I make a drag from a particualr row instead of coordinates, I am doing like this:
rownum = ultraGrid.FindRow(1, "KV LBtest1")
or how can i find a coordinates of a row. please answer asap.
1 REPLY 1
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-03-2010
01:34 AM
08-03-2010
01:34 AM
Hi,
You can get bounds of the needed row by using the following code:
See the "Bounds Object" help topic.
You can get bounds of the needed row by using the following code:
Dim rowBounds
rowNum = ultraGrid.FindRow(1, "KV LBtest1")
Set rowBounds = ultraGrid.Rows.Item(rowNum).AccessibilityObject.Bounds
See the "Bounds Object" help topic.
------
Yuri
TestComplete Customer Care Engineer
Did my reply answer your question? Give Kudos or Accept it as a Solution to help others. ⬇️⬇️⬇️
Yuri
TestComplete Customer Care Engineer
Did my reply answer your question? Give Kudos or Accept it as a Solution to help others. ⬇️⬇️⬇️
