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
Post a Comment