15 references to GetRowHeights
System.Windows.Forms.Design (15)
System\Windows\Forms\Design\Behavior\TableLayoutPanelBehavior.cs (3)
109int[] widths = isColumn ? _table.GetColumnWidths() : _table.GetRowHeights(); 261int[] oldWidths = isColumn ? _table.GetColumnWidths() : _table.GetRowHeights(); 363int[] updatedWidths = isColumn ? _table.GetColumnWidths() : _table.GetRowHeights();
System\Windows\Forms\Design\StyleEditorForm.cs (1)
526int[] rowHeights = _tableLayoutPanel.GetRowHeights();
System\Windows\Forms\Design\TableLayoutPanelDesigner.cs (11)
469rowProp?.SetValue(Table, Table.GetRowHeights().Length); 735int numRows = Table.GetRowHeights().Length; 847int[] rh = Table.GetRowHeights(); 906int[] rh = Table.GetRowHeights(); 959int[] rows = Table.GetRowHeights(); 1076int[] rh = Table.GetRowHeights(); 1196_rowCountBeforeAdd = Math.Max(0, Table.GetRowHeights().Length); // don't want negative 1214int[] rows = Table.GetRowHeights(); 1261int[] rows = Table.GetRowHeights(); 1336_rowCountBeforeAdd = Math.Max(0, Table.GetRowHeights().Length); // don't want negative 1947int[] rh = Table.GetRowHeights();