DefaultRowHeight property

int get DefaultRowHeight

Implementation

int
  get DefaultRowHeight => _defaultRowHeight;
set DefaultRowHeight (int Value)

Implementation

set DefaultRowHeight(int Value)
{
  if(_rowHeights.Allocated())
    _rowHeights.Update(0, 0);
  _defaultRowHeight = Value;
  RowHeightsChanged();
  InvalidateGrid();
}