class QDomDocumentType#

The QDomDocumentType class is the representation of the DTD in the document tree. More

Inheritance diagram of PySide6.QtXml.QDomDocumentType

Synopsis#

Methods#

Note

This documentation may contain snippets that were automatically translated from C++ to Python. We always welcome contributions to the snippet translation. If you see an issue with the translation, you can also let us know by creating a ticket on https:/bugreports.qt.io/projects/PYSIDE

Detailed Description#

The QDomDocumentType class allows read-only access to some of the data structures in the DTD: it can return a map of all entities() and notations() . In addition the function name() returns the name of the document type as specified in the <!DOCTYPE name> tag. This class also provides the publicId() , systemId() and internalSubset() functions.

See also

QDomDocument

__init__()#

Creates an empty QDomDocumentType object.

__init__(x)
Parameters:

xQDomDocumentType

Constructs a copy of n.

The data of the copy is shared (shallow copy): modifying one node will also change the other. If you want to make a deep copy, use cloneNode() .

entities()#
Return type:

QDomNamedNodeMap

Returns a map of all entities described in the DTD.

internalSubset()#
Return type:

str

Returns the internal subset of the document type or an empty string if there is no internal subset.

name()#
Return type:

str

Returns the name of the document type as specified in the <!DOCTYPE name> tag.

See also

nodeName()

notations()#
Return type:

QDomNamedNodeMap

Returns a map of all notations described in the DTD.

publicId()#
Return type:

str

Returns the public identifier of the external DTD subset or an empty string if there is no public identifier.

systemId()#
Return type:

str

Returns the system identifier of the external DTD subset or an empty string if there is no system identifier.