cellAt method

VtRenderCellSnapshot cellAt(
  1. int x
)

Returns the cell at zero-based column x.

Implementation

VtRenderCellSnapshot cellAt(int x) {
  select(x);
  return current;
}