setTextColor method

int setTextColor(
  1. int hdc,
  2. int color
)

Sets the text color of this RichEdit.

Implementation

int setTextColor(int hdc, int color) {
  logInfo('setTextColor', () => 'hdc: $hdc, color: $color');
  return SetTextColor(hdc, color);
}