Module: Atk::TextGranularity

Defined in:
(unknown)

Constant Summary collapse

CHAR =

Granularity is defined by the boundaries between characters (including non-printing characters)

0 or :char
WORD =

Granularity is defined by the boundaries of a word, starting at the beginning of the current word and finishing at the beginning of the following one, if present.

1 or :word
SENTENCE =

Granularity is defined by the boundaries of a sentence, starting at the beginning of the current sentence and finishing at the beginning of the following one, if present.

2 or :sentence
LINE =

Granularity is defined by the boundaries of a line, starting at the beginning of the current line and finishing at the beginning of the following one, if present.

3 or :line
PARAGRAPH =

Granularity is defined by the boundaries of a paragraph, starting at the beginning of the current paragraph and finishing at the beginning of the following one, if present.

4 or :paragraph