RasterList.removeColumn( colIdx [, doPaint] )
Removes a column from a list. Columns changes are display only when the list
is in "table" mode. To know the number of columns in a table list use
getColCount().
Parameters
| Name |
Type |
|
Description |
| colIdx |
number |
|
Zero-based index of the column to be removed.
If the given index is out of range, this method does nothing. |
| doPaint |
boolean |
optional |
Used to increase performance when doing batch operations in
the list. If this argument is omitted or set true, the display
is updated immediately to reflect the changes, false does not
update the the display until paint() is later invoked. |
Returns
| Type |
Description |
| object |
The list object. This allow for chaining multiple setter methods in
one single statement. |