MATLAB Function Reference Previous page   Next Page
Uitoggletool Properties

Modifying Properties

You can set and query graphics object properties in two ways:

You can set default Uitoggletool properties by typing:

Where h can be the root handle (0), a figure handle, a uitoolbar handle, or a uitoggletool handle. PropertyName is the name of the Uitoggletool property and PropertyValue is the value you specify as the default for that property.

For more information about changing the default value of a property see Setting Default Property Values.

Properties

This section lists all properties useful to uitoggletool objects along with valid values and a descriptions of their use. Curly braces { } enclose default values.

Property 
Purpose
BeingDeleted
This object is being deleted.
BusyAction
Callback routine interruption.
CData
Truecolor image displayed on the toggle tool.
ClickedCallback
Control action independent of the toggle tool position.
CreateFcn
Callback routine executed during object creation.
DeleteFcn
Callback routine executed during object deletion.
Enable
Enable or disable the uitoggletool.
HandleVisibility
Control access to object's handle.
Interruptible
Callback routine interruption mode.
OffCallback
Control action when toggle tool is set to the off position.
OnCallback
Control action when toggle tool is set to the on position.
Parent
Handle of uitoggletool's parent toolbar.
Separator
Separator line mode.
State
Uitoggletool state.
Tag
User-specified object label.
TooltipString
Content of object's tooltip.
Type
Object class.
UserData
User specified data.
Visible
Uitoggletool visibility.

BeingDeleted                 on | {off} (read only)

This object is being deleted. The BeingDeleted property provides a mechanism that you can use to determine if objects are in the process of being deleted. MATLAB sets the BeingDeleted property to on when the object's delete function callback is called (see the DeleteFcn property) It remains set to on while the delete function executes, after which the object no longer exists.

For example, some functions may not need to perform actions on objects that are being deleted, and therefore, can check the object's BeingDeleted property before acting.

BusyAction                   cancel | {queue}

Callback routine interruption. If a callback is executing and the user triggers an event (such as a mouse click) on an object for which a callback is defined, the callback associated with the new event uses the value of BusyAction to decide whether or not to attempt to interrupt the executing callback.

CData                        3-dimensional array

Truecolor image displayed on control. An n-by-m-by-3 array of RGB values that defines a truecolor image displayed on either a push button or toggle button. Each value must be between 0.0 and 1.0. The largest image that fits on the toggle tool is 20-by-20. If the array is larger, only the center 20-by-20 part of the array is used.

ClickedCallback              string or function handle

Control action independent of the toggle tool position. A routine that executes after either the OnCallback routine or OffCallback routine runs to completion. The uitoggletool's Enable property must be set to on.

CreateFcn                    string or function handle

Callback routine executed during object creation. The specified function executes when MATLAB creates a uitoggletool object. MATLAB sets all property values for the uitoggletool before executing the CreateFcn callback so these values are available to the callback. Within the function, use gcbo to get the handle of the toggle tool being created.

Setting this property on an existing uitoggletool object has no effect.

You can define a default CreateFcn callback for all new uitoggletools. This default applies unless you override it by specifying a different CreateFcn callback when you call uitoggletool. For example, the statement,

creates a default CreateFcn callback that runs whenever you create a new toggle tool. It sets the toggle tool Enable property to off.

To override this default and create a toggle tool whose Enable property is set to on, you could call uitoggletool with code similar to

See Function Handle Callbacks for information on how to use function handles to define a callback function.

DeleteFcn                    string or function handle

Callback routine executed during object deletion. A callback routine that executes when you delete the uitoggletool object (e.g., when you call the delete function or cause the figure containing the uitoggletool to reset). MATLAB executes the routine before destroying the object's properties so these values are available to the callback routine.

The handle of the object whose DeleteFcn is being executed is accessible only through the root CallbackObject property, which you can query using gcbo.

See Function Handle Callbacks for information on how to use function handles to define a callback function.

Enable                       {on} | off

Enable or disable the uitoggletool. This property controls how uitoggletools respond to mouse button clicks, including which callback routines execute.

When you left-click on a uitoggletool whose Enable property is on, MATLAB performs these actions in this order:

  1. Sets the figure's SelectionType property.
  2. Executes the toggle tool's ClickedCallback routine.
  3. Does not set the figure's CurrentPoint property and does not execute the figure's WindowButtonDownFcn callback.

When you left-click on a uitoggletool whose Enable property is off, or when you right-click a uitoggletool whose Enable property has any value, MATLAB performs these actions in this order:

  1. Sets the figure's SelectionType property.
  2. Sets the figure's CurrentPoint property.
  3. Executes the figure's WindowButtonDownFcn callback.
  4. Does not execute the toggle tool's OnCallback, OffCallback, or ClickedCallback routines.
HandleVisibility             {on} | callback | off

Control access to object's handle. This property determines when an object's handle is visible in its parent's list of children. When a handle is not visible in its parent's list of children, it is not returned by functions that obtain handles by searching the object hierarchy or querying handle properties. This includes get, findobj, gca, gcf, gco, newplot, cla, clf, and close. Neither is the handle visible in the parent figure's CurrentObject property. Handles that are hidden are still valid. If you know an object's handle, you can set and get its properties, and pass it to any function that operates on handles.

You can set the root ShowHiddenHandles property to on to make all handles visible, regardless of their HandleVisibility settings. This does not affect the values of the HandleVisibility properties.

Interruptible                {on} | off

Callback routine interruption mode. If a callback is executing and the user triggers an event (such as a mouse click) on an object for which a callback is defined, that callback attempts to interrupt the first callback. MATLAB processes the callbacks according to these factors:

If the Interruptible property of the object whose callback is executing is on (the default), the callback can be interrupted. Whenever the callback calls one of the drawnow, figure, getframe, pause, or waitfor functions, the function processes any events in the event queue, including the waiting callback, before performing its defined task.

If the Interruptible property of the object whose callback is executing is off, the callback cannot be interrupted (except by certain callbacks; see the note below).

OffCallback                  string or function handle

Control action. A routine that executes if the uitoggletool's Enable property is set to on, and either

The ClickedCallback routine, if there is one, runs after the OffCallback routine runs to completion.

OnCallback                   string or function handle

Control action. A routine that executes if the uitoggletool's Enable property is set to on, and either

The ClickedCallback routine, if there is one, runs after the OffCallback routine runs to completion.

Parent                       handle

Uitoggletool parent. The handle of the uitoggletool's parent toolbar. You can move a uitoggletool object to another toolbar by setting this property to the handle of the new parent.

Separator                    on | {off}

Separator line mode. Setting this property to on draws a dividing line to left of the uitoggletool.

State                        on | {off}

Uitoggletool state. When the state is on, the toggle tool appears in the down, or pressed, position. When the state is off, it appears in the up position. Changing the state causes the appropriate OnCallback or OffCallback routine to run.

Tag                          string

User-specified object identifier. The Tag property provides a means to identify graphics objects with a user-specified label. You can define Tag as any string.

With the findobj function, you can locate an object with a given Tag property value. This saves you from defining object handles as global variables. For example, this function call returns the handles of all children (of the specified toolbars) that have the Tag value 'Bold'.

TooltipString                string

Content of tooltip for object. The TooltipString property specifies the text of the tooltip associated with the uitoggletool. When the user moves the mouse pointer over the control and leaves it there, the tooltip is displayed.

Type                         string (read-only)

Object class. This property identifies the kind of graphics object. For uitoggletool objects, Type is always the string 'uitoggletool'.

UserData                     array

User specified data. You can specify UserData as any array you want to associate with the uitoggletool object. The object does not use this data, but you can access it using the set and get functions.

Visible                      {on} | off

Uitoggletool visibility. By default, all uitoggletools are visible. When set to off, the uitoggletool is not visible, but still exists and you can query and set its properties.


Previous page  uitoggletool uitoolbar Next page

© 1994-2005 The MathWorks, Inc.