pxt-ev3/libs/core/enums.d.ts

24 lines
471 B
TypeScript
Raw Normal View History

2017-07-05 02:17:26 +02:00
// Auto-generated. Do not edit.
2017-07-05 14:06:58 +02:00
/**
* Drawing modes
*/
declare enum Draw {
2017-07-05 14:56:13 +02:00
Normal = 0,
2017-07-05 14:06:58 +02:00
Clear = (0x0004), // DRAW_OPT_CLEAR_PIXELS
Xor = (0x0018), // DRAW_OPT_LOGICAL_XOR
Fill = (0x0020), // DRAW_OPT_FILL_SHAPE
}
2017-07-05 14:56:13 +02:00
declare enum ScreenFont {
Normal = 0, // FONTTYPE_NORMAL
Small = 1, // FONTTYPE_SMALL
Large = 2, // FONTTYPE_LARGE
Tiny = 3, // FONTTYPE_TINY
}
2017-07-05 02:17:26 +02:00
// Auto-generated. Do not edit. Really.