setColumnWidth method

void setColumnWidth (int column, TableColumnWidth value)

Determines how the width of column with the given index is determined.

Implementation

void setColumnWidth(int column, TableColumnWidth value) {
  if (_columnWidths[column] == value)
    return;
  _columnWidths[column] = value;
  markNeedsLayout();
}