|
Unit RVStyle.
Syntax
type
TRVSpecialCharacter = (rvscSpace, rvscNBSP, rvscTab, rvscParagraph,
rvscSoftHyphen, rvcFloatingLines);
TRVSpecialCharacters = set of TRVSpecialCharacter;
const
RVVisibleSpecialCharacters: TRVSpecialCharacters = [rvscSpace..rvcFloatingLines];
(introduced in version 10)
Lists characters which will be shown when rvoShowSpecialCharacters is included in TCustomRichView.Options.
Value
|
Meaning
|
rvscSpace
|
If included, space characters are shown (as middle dots). Hidden spaces at the ends of lines are not shown, see RichViewShowGhostSpaces
|
rvscNBSP
|
If included, non breaking space characters are shown (as circles)
|
rvscTab
|
If included, tab characters are shown (as arrows)
|
rvscParagraph
|
If included, end-of-paragraph and end-of-line marks are shown (as pilcrows and arrows, respectively)
|
rvscSoftHyphen
|
If included, soft hyphen characters are shown in Unicode text.
|
rvscParagraphAttrs
|
If included together with rvscParagraph, additional icons are drawn next to end-of-paragraph marks:
▪triangle-arrow showing paragraph direction (if defined); ▪rectangle if any non-default printing option is defined (never displayed for headings 1...9) ▪heading level (1...9) |
rvcFloatingLines
|
If included, floating lines are displayed for left-and right-aligned items, see TRVStyle.FloatingLineColor
|
See also:
▪RVParagraphMarks ▪TRVStyle.SpecialCharactersColor
|