Item
String rw backgroundColor
The background color of the receiver in hex format (e.g. blue would be "#0000FF").
Category ro category
The category to which this object belongs.
Item ro cellsOnly
Gets the cells for this item, excluding the item itself.
int ro childIndex
The index of this object within its parent's child list.
boolean rw collapsed
True if this object is collapsed.
int rw columnWidth
The column width for this selection.
If the selection does not designate a set of columns, this property will return -1 and setting it will have no effect.
boolean rw fontBold
True if font is bold.
String rw fontFace
The font family name.
boolean rw fontItalic
True if font is italic.
float rw fontSize
The point size of the font.
boolean rw fontStrikethrough
True if font is strikethrough.
boolean rw fontUnderline
True if font is underlined.
String rw foregroundColor
The foreground color of the receiver in hex format (e.g. blue would be "#0000FF").
String rw horizontalAlignment
The horizontal alignment of the receiver - one of "Left", "Right", "Center", or "Automatic".
int ro itemIndex
The index of this item within its parent's child list.
String rw name
The name of this object.
String rw numberFormatString
Returns the current number format string for this object. May return null for a non-standard format.
CategoryOrGroup ro parent
The parent of this object.
int rw rowHeight
The row height for this selection.
If the selection does not designate a set of rows, this property will return -1 and setting it will have no effect.
Object rw value
When getting, returns the first value this object contains. When setting, sets all values in this object to the one given.
List<Object> ro values
The list of values this object contains.
String rw verticalAlignment
The vertical alignment of the receiver - one of "Top", "Bottom", or "Middle".
List<Item> addAfter(Collection<Object> items)
Inserts the contents of
items
immediately after this one in the current child list. Returns a list of the added items.
Parameters:
List<Item> addAfter(Object... item)
Inserts the specified items immediately after this one in the current child list. Returns a list of the added items.
Parameters:
boolean canDelete()
True if this object can be deleted.
boolean canSetName()
True if this object's name can be set.
boolean canSetNumberFormat()
True if it is possible to set the number format of this object.
void copy()
Copy the item (along with its data) to the clipboard
void cut()
Remove the item and place it (along with its data) on the clipboard
void delete()
Deletes this object and its children, if any.
void paste()
Paste from the clipboard into the selection for this item. May have different results depending on what's on the clipboard. If nothing valid is on the clipboard, this will have no effect.
void setToAccountingNumberFormat()
Sets this object's number format to accounting.
void setToCurrencyNumberFormat()
Sets this object's number format to currency.
void setToPercentNumberFormat()
Sets this object's number format to percent.