SpecialSection Event

Fired when a special section is encountered.

Syntax

ANSI (Cross Platform)
virtual int FireSpecialSection(XMLSpecialSectionEventParams *e);
typedef struct {
const char *SectionId;
const char *Text; int reserved; } XMLSpecialSectionEventParams; Unicode (Windows) virtual INT FireSpecialSection(XMLSpecialSectionEventParams *e);
typedef struct {
LPCWSTR SectionId;
LPCWSTR Text; INT reserved; } XMLSpecialSectionEventParams;
- (void)onSpecialSection:(NSString*)sectionId :(NSString*)text;
#define EID_XML_SPECIALSECTION 10

virtual INT IPWORKS_CALL FireSpecialSection(LPSTR &lpszSectionId, LPSTR &lpszText);

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").

Copyright (c) 2022 /n software inc. - All rights reserved.
IPWorks 2020 C++ Edition - Version 20.0 [Build 8307]