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

Structure: laSliderWidget_t 

A slider bar is a widget that is capable of displaying a range and a slider handle. The slider can be moved between two discreet values and can have a variable min and max range.

C
typedef struct laSliderWidget_t {
  laWidget widget;
  laSliderState state;
  laSliderOrientation alignment;
  int32_t min;
  int32_t max;
  int32_t value;
  uint32_t grip;
  laSliderWidget_ValueChangedEvent valueChangedEvent;
  GFX_Point handleDownOffset;
} laSliderWidget;
Members
Members 
Description 
laWidget widget; 
widget base class 
laSliderState state; 
slider state 
laSliderOrientation alignment; 
slider alignment 
int32_t min; 
slider min value 
int32_t max; 
slider max value 
int32_t value; 
slider current value 
uint32_t grip; 
slider grip size 
laSliderWidget_ValueChangedEvent valueChangedEvent; 
value changed event 
Remarks

None.

MPLAB® Harmony Graphics Suite