Preview 2.0 is now in Public Beta!
Read the Announcement
Note: You are on the beta version of our docs. This is a work in progress and may contain broken links and pages.
AddChildFromBuilder
interface AddChildFromBuilder {
  _addChildFromBuilder(name: string, value: any): void;
}
Defines an interface for adding a child element declared in xml.

Summary

Methods

_addChildFromBuilder

_addChildFromBuilder(name: string, value: any): void
Called for every child element declared in xml. This method will add a child element (value) to current element.
Parameter Default Description
name
string

Name of the element.

value
any

Value of the element.

Returns void