How do I … modify the appearance of a Windows.Forms.TableLayoutPanel at run-time
13-Jul-1212 Leave a comment
The following adjusts the column width
Me.TableLayoutPanel1.ColumnStyles(0).Width = 10.0
The following gets the actual control. Making this invisible, leaves the table cell in place, same size.
Me.LayoutPanelGraph.GetControlFromPosition(colIndex, rowIndex).Visible = False
In my own code this is seen in SRS.Windows.Forms.ListBoxFilter