QXmlStreamNotationDeclaration#

The QXmlStreamNotationDeclaration class represents a DTD notation declaration. More

Inheritance diagram of PySide6.QtCore.QXmlStreamNotationDeclaration

Synopsis#

Functions#

Detailed Description#

An notation declaration consists of a name() , a systemId() , and a publicId() .

class PySide6.QtCore.QXmlStreamNotationDeclaration#

PySide6.QtCore.QXmlStreamNotationDeclaration(QXmlStreamNotationDeclaration)

Parameters

QXmlStreamNotationDeclarationPySide6.QtCore.QXmlStreamNotationDeclaration

Creates an empty notation declaration.

PySide6.QtCore.QXmlStreamNotationDeclaration.name()#
Return type

QStringView

Returns the notation name.

PySide6.QtCore.QXmlStreamNotationDeclaration.__ne__(other)#
Parameters

otherPySide6.QtCore.QXmlStreamNotationDeclaration

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

otherPySide6.QtCore.QXmlStreamNotationDeclaration

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

QStringView

Returns the public identifier.

PySide6.QtCore.QXmlStreamNotationDeclaration.systemId()#
Return type

QStringView

Returns the system identifier.