cellErase method

void cellErase(
  1. int index,
  2. Cursor cursor
)
override

Implementation

void cellErase(int index, Cursor cursor) {
  cellSetContent(index, 0x00);
  cellSetFgColor(index, cursor.fg);
  cellSetBgColor(index, cursor.bg);
  cellSetFlags(index, cursor.flags);
  cellSetWidth(index, 0);
}