:: com :: sun :: star :: accessibility ::

interface XAccessibleTextSelection

Methods' Summary
scrollToPosition  
getSelectedPortionCount  
getSeletedPositionStart  
getSeletedPositionEnd  
addSelection  
removeSelection  
Methods' Details
scrollToPosition
boolean
scrollToPosition( [in] ::com::sun::star::awt::Point  aPoint,
[in] boolean  isLeftTop )
raises( ::com::sun::star::lang::IllegalArgumentException );

getSelectedPortionCount
long
getSelectedPortionCount();

getSeletedPositionStart
long
getSeletedPositionStart( [in] long  nSelectedPortionIndex )
raises( ::com::sun::star::lang::IndexOutOfBoundsException );

getSeletedPositionEnd
long
getSeletedPositionEnd( [in] long  nSelectedPortionIndex )
raises( ::com::sun::star::lang::IndexOutOfBoundsException );

addSelection
long
addSelection( [in] long  selectionIndex,
[in] long  startOffset,
[in] long  endOffset )
raises( ::com::sun::star::lang::IndexOutOfBoundsException );

removeSelection
boolean
removeSelection( [in] long  selectionIndex )
raises( ::com::sun::star::lang::IndexOutOfBoundsException );

Top of Page