Class TrMemoEx
Unit
rImprovedComps
Declaration
type TrMemoEx = class(TMemo)
Description
enhanced TMemo component which provides highlighting of words in text according list of words or highlighting of text between start and stop tag
Hierarchy
Overview
Methods
|
function SearchText(const Search: string = ''; FromStart: Boolean = true; IgnoreCase: Boolean = true): Boolean; |
|
function SearchNext: Boolean; |
Properties
Description
Methods
|
function SearchText(const Search: string = ''; FromStart: Boolean = true; IgnoreCase: Boolean = true): Boolean; |
search and select text if found
|
|
function SearchNext: Boolean; |
search and select next text occurrence
|
Properties
|
property HighlightWords: TStringList read FHighlightWords write SetHighlightWords; |
list of hightlighted words, font color and background color can be defined in line on 2nd and 3rd place with TAB separator
|
|
property HighlightWholeWords: Boolean read FHighlightWholeWords write SetHighlightWholeWords default false; |
define whether only whole words is highlighted
|
|
property HighlightFromStr: string read FHighlightFromStr write SetHighlightFromStr; |
define start tag for hightlighting, text between start and stop tag is highlighted
|
|
property HighlightToStr: string read FHighlightToStr write SetHighlightToStr; |
define stop tag for hightlighting, text between start and stop tag is highlighted
|
|
property HighlightedFontColor: TColor read FHighlightedFontColor write SetHighlightedFontColor default clWindowText; |
define font color of highlighted text
|
|
property HighlightedBrushColor: TColor read FHighlightedBrushColor write SetHighlightedBrushColor default clMoneyGreen; |
define background color of highlighted text
|
|
property HighlightFromToEx: TStringList read FHighlightFromToEx write SetHighlightFromToEx; |
enhanced from-to hightlighting, list of FromStr + ToStr + font color + background color items is defined in line with TAB separator, use #9 instead of tab and #EOL# instead on end of line
|
|
property PageBreaksCharNumber: string read FPageBreaksCharNumber write FPageBreaksCharNumber; |
define number of chars used for showing of pagebreaks inside of edit area
|
Generated by PasDoc 0.15.0.
|