Sample code for 30+ languages & platforms
B4X

Setting XML Tag and Content

See more XML Examples

Demonstrates how to set the tag and content of an XML node.

The following XML sample code produces this output:


<abc>123</abc>

Chilkat B4X Downloads

B4X
Dim xml As ChilkatXml
xml.Initialize

xml.Tag = "abc"
xml.Content = "123"

Log(xml.GetXml)