Dilib, module SxmlNode, type SxmlElement

De Wicri Outils
LogoDilib.gif
Panneau travaux.png
Bibliothèque Dilib (ressources numériques)
Module SxmlNode

Le type SxmlElement correspond à la définition du type élément du DOM du W3C.

 

Constructeurs

Constructeur SxmlElementCreate

Constructeur

#include "SxmlNode.h"
SxmlElement *SxmlElementCreate(char *tag, char *text);

Exemple :

SxmlElement *bodyNode;
SxmlElement *p1;
bodyNode=SxmlElementCreate("body");
SxmlAppendChild(bodyNode, SxmlLeafCreate("p","hello World");

Constructeur SxmlLeafCreate