Xml.xmldom.IsPrefixed

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

function IsPrefixed(const AName: DOMString): Boolean;

C++

extern DELPHI_PACKAGE bool __fastcall IsPrefixed(const System::UnicodeString AName);

Properties

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


Description

Indicates whether an XML tag name includes a namespace prefix.

Call IsPrefixed to determine whether a tag name includes a namespace prefix.

AName is the tag name of the XML node.

IsPrefixed returns true if AName includes a namespace prefix followed by the colon (:) separator character, false otherwise.

See Also