SpecialSection Event
Fired when a special section is encountered.
Syntax
typedef void __fastcall (__closure *TipwXMLpSpecialSectionEvent)(System::TObject* Sender, TipwXMLpSpecialSectionEventParams *e);__property TipwXMLpSpecialSectionEvent OnSpecialSection = {read=FOnSpecialSection, write=FOnSpecialSection};
typedef struct {
String SectionId;
String Text;
} TipwXMLpSpecialSectionEventParams;
Remarks
The SpecialSection event is fired whenever a special section (such as <![ CDATA [ ..text... ]]>) is found in the document.
The full text of the special section is provided by the Text parameter, while the SectionId parameter provides the section identifier (e.g. "CDATA").