MPLAB® Harmony Graphics Suite > Graphics Library > Aria Graphics Library > Aria Hardware Abstraction Layer (HAL) > Library Interface > b) Data Types and Constants > GFX_DrawMode Enumeration
MPLAB® Harmony Graphics Suite
GFX_DrawMode Enumeration

Enumeration: GFX_DrawMode_t 

line - draws the outline of a shape fill - draws a filled shape gradient left/right - draws a gradient from left to right, uses the first two gradient colors gradient top/bottom - draws a gradient from top to bottom, uses the first two gradient colors

C
typedef enum GFX_DrawMode_t {
  GFX_DRAW_LINE = 0x0,
  GFX_DRAW_FILL,
  GFX_DRAW_GRADIENT_LEFT_RIGHT,
  GFX_DRAW_GRADIENT_TOP_BOTTOM
} GFX_DrawMode;
Remarks

None.

MPLAB® Harmony Graphics Suite