Rogue Wave Views 5.6 |
Rogue Wave Views |
Rogue Wave Views Documentation Home |
Structure. More...
#include <ilviews/dataccess/tblsel.h>
Inherited by IliFloatingTableSelection.
Public Member Functions | |
IliTableSelection (IliTableSelectionType t=IliSelectNone, IlInt r=0, IlInt c=0) | |
This constructor initializes the table selection. More... | |
void | addColumn (IlInt colno) |
Adds a column to the selection. More... | |
void | addRange (IlInt from, IlInt to) |
Adds a range in the selection. More... | |
void | addRow (IlInt rowno) |
Adds to the selection a row. More... | |
IlBoolean | contains (const IliTableSelection &sel) const |
Returns IlTrue if a selection is included in the selection. More... | |
IlBoolean | containsCell (IlInt rowno, IlInt colno) const |
Returns IlTrue if a cell is included in the selection. More... | |
IlBoolean | containsColumn (IlInt colno) const |
Returns IlTrue if a column is included in the selection. More... | |
IlBoolean | containsRange (IlInt from, IlInt to) const |
IlTrue if the range set of rows belongs to the selection. More... | |
IlBoolean | containsRow (IlInt rowno) const |
Returns IlTrue if a row is included in the selection. More... | |
IlInt | getColumn () const |
Returns the column position of the selected column or cell. More... | |
IlInt | getColumnAt (IlInt idx) const |
Returns a column position from the selection. More... | |
IlInt | getColumnsCount () const |
Returns the number of columns included in the selection. More... | |
void | getRangeAt (IlInt idx, IlInt &from, IlInt &to) const |
Returns a range from the selection. More... | |
IlInt | getRangesCount () const |
Returns the number of ranges included in the selection. More... | |
IlInt | getRow () const |
Returns the row position of the selected row or cell. More... | |
IlInt | getRowAt (IlInt idx) const |
Returns a row position from the selection. More... | |
IlInt | getRowsCount () const |
Returns the number of rows included in the selection. More... | |
IliTableSelectionType | getType () const |
Returns the selection type. More... | |
IlBoolean | isCell () const |
Returns IlTrue if one cell is selected. More... | |
IlBoolean | isColumn () const |
IlTrue if one column is selected. More... | |
IlBoolean | isColumnOrCell () const |
Returns IlTrue if one column or one cell is selected. More... | |
IlBoolean | isEmpty () const |
Returns IlTrue if the selection is empty. More... | |
IlBoolean | isFull () const |
Returns IlTrue if the table-gadget is selected in its entirety. More... | |
IlBoolean | isMulti () const |
Returns IlTrue if the selection contains more than one row or column. More... | |
IlBoolean | isRow () const |
Returns IlTrue if one row is selected. More... | |
IlBoolean | isRowOrCell () const |
Returns IlTrue if one row or one cell is selected. More... | |
void | removeColumn (IlInt colno) |
Removes a column from the selection. More... | |
void | removeRange (IlInt from, IlInt to) |
Removes a range from the selection. More... | |
void | removeRow (IlInt rowno) |
Removes a row from the selection. More... | |
void | setColumn (IlInt colno) |
Sets the column position of the selected column or cell. More... | |
void | setRow (IlInt rowno) |
Sets the row position of the selected row or cell. More... | |
void | setType (IliTableSelectionType type) |
Sets the selection type. More... | |
Structure.
Library: dataccess
This class describes a selection in a table gadget.
IliTableSelection::IliTableSelection | ( | IliTableSelectionType | t = IliSelectNone , |
IlInt | r = 0 , |
||
IlInt | c = 0 |
||
) |
This constructor initializes the table selection.
t | The selection type. |
rowno | The row position. |
colno | The column position. |
void IliTableSelection::addColumn | ( | IlInt | colno | ) |
Adds a column to the selection.
colno | The column position in the table-gadget. |
Adds a range in the selection.
This range designates either a set of rows or a set of columns (depending on whether the type of the selection is IliSelectRow
or IliSelectColumn
.)
from | The lower bound (inclusive) of the range. |
to | The upper bound (inclusive) of the range. |
void IliTableSelection::addRow | ( | IlInt | rowno | ) |
Adds to the selection a row.
rowno | The row position in the table-gadget. |
IlBoolean IliTableSelection::contains | ( | const IliTableSelection & | sel | ) | const |
Returns IlTrue
if a selection is included in the selection.
sel | The selection. |
IlTrue
if a selection is included in the selection. Returns IlTrue
if a cell is included in the selection.
This can happen if the type of the selection is IliSelectCell
, IliSelectRow
, IliSelectColumn
, or IliSelectAll
.
rowno | The row position. |
colno | The column position. |
IlTrue
if a cell is included in the selection. Returns IlTrue
if a column is included in the selection.
This can only happen if the type of the selection is IliSelectColumn
or IliSelectAll
.
colno | The column position. |
IlTrue
if a column is included in the selection. IlTrue
if the range set of rows belongs to the selection.
from | The lower bound (inclusive) of the range. |
to | The upper bound (inclusive) of the range. |
IlTrue
if the range set of rows belongs to the selection. Returns IlTrue
if a row is included in the selection.
This can only happen if the type of the selection is IliSelectRow
or IliSelectAll
.
rowno | The row position. |
IlTrue
if a row is included in the selection. IlInt IliTableSelection::getColumn | ( | ) | const |
Returns the column position of the selected column or cell.
Returns a column position from the selection.
idx | The index in the selection. The value is between 0 and getColumnsCount() . |
IlInt IliTableSelection::getColumnsCount | ( | ) | const |
Returns the number of columns included in the selection.
Returns a range from the selection.
idx | The range index in the selection. The value is between 0 and getRangesCount() . |
from | The lower bound (inclusive) of the range. |
to | The upper bound (inclusive) of the range. |
IlInt IliTableSelection::getRangesCount | ( | ) | const |
Returns the number of ranges included in the selection.
IlInt IliTableSelection::getRow | ( | ) | const |
Returns the row position of the selected row or cell.
Returns a row position from the selection.
idx | The index in the selection. The value is between 0 and getRowsCount() . |
IlInt IliTableSelection::getRowsCount | ( | ) | const |
Returns the number of rows included in the selection.
IliTableSelectionType IliTableSelection::getType | ( | ) | const |
Returns the selection type.
IlBoolean IliTableSelection::isCell | ( | ) | const |
Returns IlTrue
if one cell is selected.
IlTrue
if one cell is selected. In this case, the selected cell is identified by the getRow
and getColumn
member functions. IlBoolean IliTableSelection::isColumn | ( | ) | const |
IlTrue
if one column is selected.
In this case, the selected column is identified by the getColumn
member function.
IlTrue
if one column is selected. IlBoolean IliTableSelection::isColumnOrCell | ( | ) | const |
Returns IlTrue
if one column or one cell is selected.
IlTrue
if one column or one cell is selected. IlBoolean IliTableSelection::isEmpty | ( | ) | const |
Returns IlTrue
if the selection is empty.
IlTrue
if the selection is empty. IlBoolean IliTableSelection::isFull | ( | ) | const |
Returns IlTrue
if the table-gadget is selected in its entirety.
IlTrue
if the table-gadget is selected in its entirety. IlBoolean IliTableSelection::isMulti | ( | ) | const |
Returns IlTrue
if the selection contains more than one row or column.
IlTrue
if the selection contains more than one row or column. IlBoolean IliTableSelection::isRow | ( | ) | const |
Returns IlTrue
if one row is selected.
In this case,the selected row is identified by the getRow
member function.
IlTrue
if one row is selected. IlBoolean IliTableSelection::isRowOrCell | ( | ) | const |
Returns IlTrue
if one row or one cell is selected.
IlTrue
if one row or one cell is selected. void IliTableSelection::removeColumn | ( | IlInt | colno | ) |
Removes a column from the selection.
colno | The column position in the table-gadget. |
Removes a range from the selection.
Depending on whether the type of the selection is IliSelectRow
or IliSelectColumn
, this member function will remove from the selection all rows, (or all columns) whose position falls within the range.
from | The lower bound (inclusive) of the range. |
to | The upper bound (inclusive) of the range. |
void IliTableSelection::removeRow | ( | IlInt | rowno | ) |
Removes a row from the selection.
rowno | The row position in the table-gadget. |
void IliTableSelection::setColumn | ( | IlInt | colno | ) |
Sets the column position of the selected column or cell.
colno | The column position. |
void IliTableSelection::setRow | ( | IlInt | rowno | ) |
Sets the row position of the selected row or cell.
rowno | The row position. |
void IliTableSelection::setType | ( | IliTableSelectionType | type | ) |
Sets the selection type.
type | The selection type. |
© Copyright 2012, Rogue Wave Software, Inc. All Rights Reserved.
Rogue Wave is a registered trademark of Rogue Wave Software, Inc. in the United States and other countries. All other trademarks are the property of their respective owners.