c# - TableLayoutPanel's Control Columns properties -



i've noticed every control added tablelayoutpanel given "column" , "row" properties. how can access these properties through code?
thanks:)

these properties exist in properties window, magic provided iextenderprovider interface. don't exist @ runtime. extended properties are:

  • columnspan. runtime: getcolumnspan() , setcolumnspan()
  • rowspan. runtime: getrowspan() , setrowspan()
  • row. runtime: getrow() , setrow()
  • cell. runtime: getcellposition() , setcellposition()
  • column. runtime: getcolumn() , setcolumn()

obviously tlp highly optimized used designer. it's kinda of pain @ runtime.


Comments

Popular posts from this blog

delphi - TJvHidDeviceController "DevicePath" always showing "\" -

Disabling Android home button for industry application -

asp.net mvc 3 - Unexpected "foreach" keyword after "@" character -