interface XViewCursor in module com::sun::star::view::

(Global Index)

Syntax

interface XViewCursor : com::sun::star::uno::XInterface ;

Description

makes it possible to move a cursor up/down/left/right within laid out text.

See also

CellCursor

See also

TextCursor

See also

LineCursor

Method Summary

goDown moves the cursor the specified number of lines down.

goUp moves the cursor the specified number of lines up.

goLeft moves the cursor the specified number of characters to the left.

goRight moves the cursor the specified number of characters to the right.

Method Details



goDown

Syntax

boolean goDown (
short nCount,
boolean bExpand );

Description

moves the cursor the specified number of lines down.


goUp

Syntax

boolean goUp (
short nCount,
boolean bExpand );

Description

moves the cursor the specified number of lines up.


goLeft

Syntax

boolean goLeft (
short nCount,
boolean bExpand );

Description

moves the cursor the specified number of characters to the left.


goRight

Syntax

boolean goRight (
short nCount,
boolean bExpand );

Description

moves the cursor the specified number of characters to the right.

Top of Page