getAttributes method

int getAttributes(
  1. int x,
  2. int y
)

Get text attributes at the specified coordinates

Implementation

int getAttributes(int x, int y) {
  final index = _getIndex(x, y);
  return attributes[index];
}