setString method

void setString(
  1. int x,
  2. int y,
  3. String string,
  4. Style style,
)

Write string to the buffer at position (x, y) with style.

Implementation

void setString(int x, int y, String string, Style style) {
  setStringN(x, y, string, 0x7FFFFFFF, style);
}