Creating Graphical User Interfaces Previous page   Next Page

Toggle Button Callback

The callback for a toggle button needs to query the toggle button to determine what state it is in. MATLAB sets the Value property equal to the Max property when the toggle button is depressed (Max is 1 by default) and equal to the Min property when the toggle button is not depressed (Min is 0 by default).

From the GUI M-file

The following code illustrates how to program the callback in the GUI M-file.

Adding an Image to a Push Button or Toggle Button

Assign the CData property an m-by-n-by-3 array of RGB values that define a truecolor image. For example, the array a defines 16-by-128 truecolor image using random values between 0 and 1 (generated by rand).

See ind2rgb for information on converting an (X, MAP) image to an RGB image.


Previous page  Examples of Callbacks for GUI Components Radio Buttons Next page

© 1994-2005 The MathWorks, Inc.