Next: , Previous: , Up: Advanced Plotting   [Contents][Index]


15.4.5 Application-defined Data

Octave has a provision for attaching application-defined data to a graphics handle. The data can be anything which is meaningful to the application, and will be completely ignored by Octave.

Function File: setappdata (h, name, value)
Function File: setappdata (h, name1, value1, name2, value3, …)

Set the application data name to value for the graphics object with handle h.

h may also be a vector of graphics handles. If the application data with the specified name does not exist, it is created. Multiple name/value pairs can be specified at a time.

See also: getappdata, isappdata, rmappdata, guidata, get, set, getpref, setpref.

Function File: value = getappdata (h, name)
Function File: appdata = getappdata (h)

Return the value of the application data name for the graphics object with handle h.

h may also be a vector of graphics handles. If no second argument name is given then getappdata returns a structure, appdata, whose fields correspond to the appdata properties.

See also: setappdata, isappdata, rmappdata, guidata, get, set, getpref, setpref.

Function File: rmappdata (h, name)
Function File: rmappdata (h, name1, name2, …)

Delete the application data name from the graphics object with handle h.

h may also be a vector of graphics handles. Multiple application data names may be supplied to delete several properties at once.

See also: setappdata, getappdata, isappdata.

Function File: valid = isappdata (h, name)

Return true if the named application data, name, exists for the graphics object with handle h.

h may also be a vector of graphics handles.

See also: getappdata, setappdata, rmappdata, guidata, get, set, getpref, setpref.


Next: , Previous: , Up: Advanced Plotting   [Contents][Index]