class AccessibleTabListBoxTable final
: public cppu::ImplInheritanceHelper<AccessibleBrowseBoxTable,
css::accessibility::XAccessibleSelection>
{ private:
VclPtr<SvHeaderTabListBox> m_pTabListBox;
/** Returns the count of rows in the table. */
sal_Int32 implGetRowCount() const override; /** Returns the total column count in the table. */
sal_Int32 implGetColumnCount() const override; /** Returns the count of selected rows in the table. */
sal_Int32 implGetSelRowCount() const;
/** Returns the row index from cell index. */
sal_Int32 implGetRow( sal_Int64 _nIndex ) const
{ auto nColCount = implGetColumnCount();
assert(nColCount != 0); return _nIndex / nColCount;
}
/** Returns the absolute row index of the nSelRow-th selected row. */
sal_Int32 implGetSelRow( sal_Int32 _nSelRow ) const;
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.