JVCL Help:TTagInfo

From Project JEDI Wiki
Jump to navigationJump to search
JEDI Visual Component Library Help

Search in JVCL Help

 
Search in all projects
 

Summary

Represents information about HTML tags and attributes defined for use in the TJvHTMLParser component.

run\JvHtmlParser.pas


Pascal

 run\JvHtmlParser.pas
 PTagInfo = ^TTagInfo;
TTagInfo = record
BeginPos: Integer;
EndPos: Integer;
BeginContext: Integer;
EndContext: Integer;
Key: Integer;
end;


Members

Members Description
BeginPos: Integer; Position or offset to the beginning of an HTML tag.
EndPos: Integer; Position or offset to the end of an HTML tag.
BeginContext: Integer; Position or offset to the beginning of the context for an HTML tag.
EndContext: Integer; Position or offset to the end of the context for an HTML tag.
Key: Integer; Ordinal position of the HTML tag in the list of defined HTML tags.

run\JvHtmlParser.pas


Description

TTagInfo is a record type that represents information about HTML tags and attributes found in HTML parsed using the TJvHTMLParser component. Member variables in TTagInfo are used to store both the tag positions and context positions for an HTML tag with the specified key.
Instances of TTagInfo are created and stored in the TTagInfoList list type used during parsing and event notifications in the TJvHTMLParser.AnalyseString method.

run\JvHtmlParser.pas


See Also

TTagInfoList, TJvHTMLParser.AnalyseString, TTagInfo.EndPos, TTagInfo.BeginPos, TTagInfo.EndContext, TTagInfo.BeginContext

run\JvHtmlParser.pas


About

Navigation

run\JvHtmlParser.pas



Contribute to this help topic

This documentation wiki is based on the collaborative effort of Project JEDI users. Your edits are welcome in order to improve documentation quality: edit this page