Next: , Previous: , Up: Graphics Object Properties   [Contents][Index]


15.3.3.16 Uitable Properties

Properties of uitable objects (see uitable):

backgroundcolor: def. 2-by-3 double
beingdeleted: {"off"} | "on"
busyaction: "cancel" | {"queue"}

Define how Octave handles the execution of this object’s callback properties when it is unable to interrupt another object’s executing callback. This is only relevant when the currently executing callback object has its interruptible property set to "off". The busyaction property of the interrupting callback object indicates whether the interrupting callback is queued ("queue" (default)) or discarded ("cancel"). See Callbacks section.

buttondownfcn: string | function handle, def. [](0x0)

For information on how to write graphics listener functions see Callbacks section.

celleditcallback: def. [](0x0)
cellselectioncallback: def. [](0x0)
children (read-only): vector of graphics handles, def. [](0x1)

Graphics handles of the uitable’s children.

clipping: "off" | {"on"}

If clipping is "on", the uitable is clipped in its parent axes limits.

columneditable: def. [](0x0)
columnformat: def. {}(0x0)
columnname: def. "numbered"
columnwidth: def. "auto"
createfcn: string | function handle, def. [](0x0)

Callback function executed immediately after uitable has been created. Function is set by using default property on root object, e.g., set (groot, "defaultuitablecreatefcn", 'disp ("uitable created!")').

For information on how to write graphics listener functions see Callbacks section.

data: def. [](0x0)
deletefcn: string | function handle, def. [](0x0)

Callback function executed immediately before uitable is deleted.

For information on how to write graphics listener functions see Callbacks section.

enable: "off" | {"on"}
extent (read-only): four-element vector
fontangle: "italic" | {"normal"} | "oblique"

Control whether the font is italic or normal.

fontname: string, def. "*"

Name of font used for text rendering. When setting this property, the text rendering engine will search for a matching font in your system. If none is found then text is rendered using a default sans serif font (same as the default "*" value).

Programming Note: On systems that don’t use FontConfig natively (all but Linux), the font cache is built when Octave is installed. You will need to run system ("fc-cache -fv") manually after installing new fonts.

fontsize: scalar, def. 10

Size of the font used for text rendering. See fontunits property.

fontunits: "centimeters" | "inches" | "normalized" | "pixels" | {"points"}

Units used to interpret the "fontsize" property.

fontweight: "bold" | {"normal"}

Control the variant of the base font used for text rendering.

foregroundcolor: def. [0 0 0]
handlevisibility: "callback" | "off" | {"on"}

If handlevisibility is "off", the uitable’s handle is not visible in its parent’s "children" property.

hittest: "off" | {"on"}

Specify whether uitable processes mouse events or passes them to ancestors of the object. When enabled, the object may respond to mouse clicks by evaluating the "buttondownfcn", showing the uicontextmenu, and eventually becoming the root "currentobject". This property is only relevant when the object can accept mouse clicks which is determined by the "pickableparts" property. See pickableparts property.

interruptible: "off" | {"on"}

Specify whether this object’s callback functions may be interrupted by other callbacks. By default interruptible is "on" and callbacks that make use of drawnow, figure, waitfor, getframe or pause functions are eventually interrupted. See Callbacks section.

keypressfcn: def. [](0x0)
keyreleasefcn: def. [](0x0)
parent: graphics handle

Handle of the parent graphics object.

pickableparts: "all" | "none" | {"visible"}

Specify whether uitable will accept mouse clicks. By default, pickableparts is "visible" and only visible parts of the uitable or its children may react to mouse clicks. When pickableparts is "all" both visible and invisible parts (or children) may react to mouse clicks. When pickableparts is "none" mouse clicks on the object are ignored and transmitted to any objects underneath this one. When an object is configured to accept mouse clicks the "hittest" property will determine how they are processed. See hittest property.

position: def. [20 20 300 300]
rearrangeablecolumns: {"off"} | "on"
rowname: def. "numbered"
rowstriping: "off" | {"on"}
selected: {"off"} | "on"
selectionhighlight: "off" | {"on"}
tag: string, def. ""

A user-defined string to label the graphics object.

tooltipstring: def. ""
type (read-only): string

Class name of the graphics object. type is always "uitable"

uicontextmenu: graphics handle, def. [](0x0)

Graphics handle of the uicontextmenu object that is currently associated to this uitable object.

units: "centimeters" | "characters" | "inches" | "normalized" | {"pixels"} | "points"
userdata: Any Octave data, def. [](0x0)

User-defined data to associate with the graphics object.

visible: "off" | {"on"}

If visible is "off", the uitable is not rendered on screen.


Next: , Previous: , Up: Graphics Object Properties   [Contents][Index]