SPINNER

Create a simple spinner control using 3 uicontrols.
2K Downloads
Updated 1 Sep 2016

View License

SPINNER creates a simple 'spinner' control, using an edit window and 2 pushbuttons.
This includes an example GUI (SPINNERGUI) that uses two spinners together.

Here's the online help:

SPINNER create a 'spinner' from an edit box and two pushbuttons
SPINNER(PROP1,VAL1,PROP2,VAL2,...) creates the spinner with the specified
property values.
Properties:
Position : pixel position rectangle, default [20 20 60 20]
Min : minimum value, default 0
Max : maximum value, default 1
StartValue : initial value, default 1
Step : increment value, default 0.1
Callback : callback (can be a string, function handle,
or cell array with a function handle), default ''
Tag : name for spinner object.
H = SPINNER returns the handle for the edit box that contains the value.
Access it's String or Value property to get the string or value from the
'spinner'.
[H,H2] = SPINNER returns the handles for the pushbuttons in H2.
S = SPINNER(OBJ) returns the spinner data for the figure. If there are
multiple spinners in the figure, then passing in the figure handle will
return an array of structures. Passing in the handle of one of the
uicontrols that comprise a particular spinner will return the structure
for that spinner only.

Example:

fig = figure;
h = spinner('Parent',fig,...
'Position',[100 100 60 40],...
'Min',0,...
'Max',1000000,...
'StartValue',1,...
'Step',100,...
'Callback',@(h,e));

Cite As

Steve Simon (2024). SPINNER (https://www.mathworks.com/matlabcentral/fileexchange/5881-spinner), MATLAB Central File Exchange. Retrieved .

MATLAB Release Compatibility
Created with R14
Compatible with any release
Platform Compatibility
Windows macOS Linux
Categories
Find more on Migrate GUIDE Apps in Help Center and MATLAB Answers

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!
Version Published Release Notes
1.0.0.1

Updated license

1.0.0.0