MPLAB® Harmony Graphics Suite > Graphics Library > Aria Graphics Library > Aria User Interface Library Interface > b) Data Types and Constants > laKeyPadCell Structure
MPLAB® Harmony Graphics Suite
laKeyPadCell Structure

Structure: laKeyPadCell_t 

A key pad is made up of an array of key pad cells. Each cell is individually an laButtonWidget, an action, a value, and a few other options.

C
typedef struct laKeyPadCell_t {
  laBool enabled;
  laButtonWidget* button;
  laKeyPadCellAction action;
  laString value;
} laKeyPadCell;
Members
Members 
Description 
laBool enabled; 
indicates if the cell should be drawn 
laButtonWidget* button; 
the button that handles the cell input events and rendering 
laKeyPadCellAction action; 
the action that occurs when the cell is activated 
laString value; 
the value that is passed to the edit event system 
Remarks

None.

MPLAB® Harmony Graphics Suite