windowsfont method

Future<bool> windowsfont(
  1. int x,
  2. int y,
  3. int fontheight,
  4. int rotation,
  5. int fontstyle,
  6. int fontunderline,
  7. String szFaceName,
  8. String content,
)

Prints text using a Windows TrueType font (Windows-only).

Implementation

Future<bool> windowsfont(
  int x,
  int y,
  int fontheight,
  int rotation,
  int fontstyle,
  int fontunderline,
  String szFaceName,
  String content,
) {
  throw UnimplementedError('windowsfont() has not been implemented.');
}