other-licenses/ia2/AccessibleTableCell.idl
Not scriptableIUnknown
Last changed in Gecko 1.9.2 (Firefox 3.6 / Thunderbird 3.1 / Fennec 1.0)[propget] HRESULT columnExtent([out] long nColumnsSpanned ); |
[propget] HRESULT columnHeaderCells([out, size_is(, nColumnHeaderCells,)] IUnknown cellAccessibles, [out] long nColumnHeaderCells ); |
[propget] HRESULT columnIndex([out] long columnIndex ); |
[propget] HRESULT isSelected([out] boolean isSelected ); |
[propget] HRESULT rowColumnExtents([out] long row, [out] long column, [out] long rowExtents, [out] long columnExtents, [out] boolean isSelected ); |
[propget] HRESULT rowExtent([out] long nRowsSpanned ); |
[propget] HRESULT rowHeaderCells([out, size_is(, nRowHeaderCells,)] IUnknown cellAccessibles, [out] long nRowHeaderCells ); |
[propget] HRESULT rowIndex([out] long rowIndex ); |
[propget] HRESULT table([out] IUnknown table ); |
Returns the number of columns occupied by this cell accessible. The result is greater than 1 if the specified cell spans multiple columns.
[propget] HRESULT columnExtent( [out] long nColumnsSpanned );
nColumnsSpanned
S_OK.
Returns the column headers as an array of cell accessibles.
[propget] HRESULT columnHeaderCells( [out, size_is(, nColumnHeaderCells,)] IUnknown cellAccessibles, [out] long nColumnHeaderCells );
cellAccessibles
nColumnHeaderCells
S_FALSE if there is no header, [out] values are null
and 0 respectively. S_OK.
Translates this cell accessible into the corresponding column index.
[propget] HRESULT columnIndex( [out] long columnIndex );
columnIndex
S_OK.
Returns a boolean value indicating whether this cell is selected.
[propget] HRESULT isSelected( [out] boolean isSelected );
isSelected
true
if the specified cell is selected and false
otherwise.S_OK.
Gets the row and column indexes and extents of this cell accessible and whether or not it is selected. This is a convenience function. It is not mandatory to implement it.
[propget] HRESULT rowColumnExtents( [out] long row, [out] long column, [out] long rowExtents, [out] long columnExtents, [out] boolean isSelected );
row
column
rowExtents
columnExtents
isSelected
S_OK.
Returns the number of rows occupied by this cell accessible.
[propget] HRESULT rowExtent( [out] long nRowsSpanned );
nRowsSpanned
S_OK.
Returns the row headers as an array of cell accessibles.
[propget] HRESULT rowHeaderCells( [out, size_is(, nRowHeaderCells,)] IUnknown cellAccessibles, [out] long nRowHeaderCells );
cellAccessibles
nRowHeaderCells
S_FALSE if there is no header, [out] values are null
and 0 respectively. S_OK.
Translates this cell accessible into the corresponding row index.
[propget] HRESULT rowIndex( [out] long rowIndex );
rowIndex
S_OK.
Returns a reference to the accessbile of the containing table
.
[propget] HRESULT table( [out] IUnknown table );
table
IUnknown
of the containing table
.S_OK.