Row and Column property of a control in TableLayoutPanel

How can I access the Row and Column properties of a control that has been dropped in a TableLayoutPanel. It provides these properties through an extender provider. I don't know how to access these properties at runtime.

My requirement is to locate a control with respect to its row and cell.

Waiting for a quick response....

[343 byte] By [sohaibi] at [2007-12-21]
# 1
At runtime you'll have to use the TableLayoutPanel's GetColumn() and GetRow() methods.
PeterRitchie at 2007-8-30 > top of Msdn Tech,Windows Forms,Windows Forms Designer...
# 2

Hi,

You should be able to use TableLayoutPanel.GetPositionFromControl.

Martin

MartinThorsen-MSFT at 2007-8-30 > top of Msdn Tech,Windows Forms,Windows Forms Designer...
# 3
Thanx both of you....

I have already finished that thing

sohaibi at 2007-8-30 > top of Msdn Tech,Windows Forms,Windows Forms Designer...