setCellPixels method

void setCellPixels(
  1. int width,
  2. int height
)

Push the measured cell pixel size so the engine can answer CSI 14/18 t. Carries no grid dimensions, so it never creates the binding; if it arrives before sizing it is stashed and applied when the grid is built.

Implementation

void setCellPixels(int width, int height) {
  _cellPixelHeight = height;
  if (_binding == null) {
    _pendingCellPixels = (width: width, height: height);
    return;
  }
  _binding!.setCellPixels(width, height);
}