QXmlStreamNotationDeclaration#
The QXmlStreamNotationDeclaration
class represents a DTD notation declaration. More…
Synopsis#
Functions#
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#
An notation declaration consists of a name()
, a systemId()
, and a publicId()
.
- class PySide6.QtCore.QXmlStreamNotationDeclaration#
Creates an empty notation declaration.
- PySide6.QtCore.QXmlStreamNotationDeclaration.name()#
- Return type:
str
Returns the notation name.
- PySide6.QtCore.QXmlStreamNotationDeclaration.__ne__(other)#
- Parameters:
- Return type:
bool
Compares this notation declaration with other
and returns true
if they are not equal; otherwise returns false
.
- PySide6.QtCore.QXmlStreamNotationDeclaration.__eq__(other)#
- Parameters:
- Return type:
bool
Compares this notation declaration with other
and returns true
if they are equal; otherwise returns false
.
- PySide6.QtCore.QXmlStreamNotationDeclaration.publicId()#
- Return type:
str
Returns the public identifier.
- PySide6.QtCore.QXmlStreamNotationDeclaration.systemId()#
- Return type:
str
Returns the system identifier.