Xml.xmldom.MakeNodeName

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

function MakeNodeName(const Prefix, LocalName: DOMString): DOMString;

C++

extern DELPHI_PACKAGE System::UnicodeString __fastcall MakeNodeName(const System::UnicodeString Prefix, const System::UnicodeString LocalName);

Properties

Type Visibility Source Unit Parent
function public
Xml.Xmldom.pas
Xml.xmldom.hpp
Xml.xmldom Xml.xmldom


Description

Assembles a full tag name from a local name and namespace prefix.

Call MakeNodeName to create a tag name from a namespace prefix and a local tag name.

Prefix is the namespace prefix.

LocalName is the local name for the node.

MakeNodeName returns the full tag name that consists of the namespace prefix, followed by a colon and then the local name.

See Also