Table.getColumn

Returns the column at the given, zero-relative index in the receiver. Throws an exception if the index is out of range. Columns are returned in the order that they were created. If no <code>TableColumn</code>s were created by the programmer, this method will throw <code>ERROR_INVALID_RANGE</code> despite the fact that a single column of data may be visible in the table. This occurs when the programmer uses the table like a list, adding items but never creating a column.

@param index the index of the column to return @return the column at the given index

@exception IllegalArgumentException <ul> <li>ERROR_INVALID_RANGE - if the index is not between 0 and the number of elements in the list minus 1 (inclusive)</li> </ul> @exception SWTException <ul> <li>ERROR_WIDGET_DISPOSED - if the receiver has been disposed</li> <li>ERROR_THREAD_INVALID_ACCESS - if not called from the thread that created the receiver</li> </ul>

@see Table#getColumnOrder() @see Table#setColumnOrder(int[]) @see TableColumn#getMoveable() @see TableColumn#setMoveable(bool) @see SWT#Move

class Table
getColumn
(
int index
)

Meta