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

python - Scipy curvefit RuntimeError:Optimal parameters not found: Number of calls to function has reached maxfev = 1000 -

c# - How to add a new treeview at the selected node? -

java - netbeans "Please wait - classpath scanning in progress..." -