Class TrRTFParser
Unit
u_rtfparser
Declaration
type TrRTFParser = class(TComponent)
Description
TrRTFParser is light version of RTF format parser. It simply extracts all tags and texts to the StringList which can be used to produce plain text file or use rtf tags to produce formatted text.
Hierarchy
Overview
Methods
Properties
|
property RtfContent: string read FRtfContent write FRtfContent; |
|
property RtfElements: TStrings read FRtfElements; |
|
property FontTable: TStrings read FFontTable; |
Description
Methods
|
function IsRtfFormat: boolean; |
return whether RtfContent contain rtf format
|
|
procedure ParseRtfContent(SupportedTags: TStrings = nil); |
parse RtfContent and fill RtfElements by supported tags and text; supported tags can use wild char * for any chars and # for any numbers
|
Properties
|
property RtfContent: string read FRtfContent write FRtfContent; |
define RtfContent
|
|
property RtfElements: TStrings read FRtfElements; |
contain result of parsing
|
|
property FontTable: TStrings read FFontTable; |
contain list of defined fonts (f0, f1, f2)
|
Generated by PasDoc 0.15.0.
|