LibreOffice
LibreOffice 6.4 SDK API Reference
|
Go to the documentation of this file.
20 #ifndef __com_sun_star_xml_dom_XElement_idl__
21 #define __com_sun_star_xml_dom_XElement_idl__
26 module
com { module sun { module star { module xml { module dom {
140 [in]
string namespaceURI, [in]
string qualifiedName, [in]
string value) raises (
DOMException);
boolean hasAttributeNS([in] string namespaceURI,[in] string localName)
Returns true when an attribute with a given local name and namespace URI is specified on this element...
string getAttribute([in] string name)
Retrieves an attribute value by name.
XAttr getAttributeNodeNS([in] string namespaceURI,[in] string localName)
Retrieves an Attr node by local name and namespace URI.
XAttr setAttributeNode([in] XAttr newAttr)
Adds a new attribute node.
The primary dom datatype.
Definition: XNode.idl:69
XAttr setAttributeNodeNS([in] XAttr newAttr)
Adds a new attribute.
boolean hasAttribute([in] string name)
Returns true when an attribute with a given name is specified on this element or has a default value,...
void setAttribute([in] string name,[in] string value)
Adds a new attribute.
encapsulates the details of an XML parse error or warning.
Definition: DOMException.idl:34
XAttr removeAttributeNode([in] XAttr oldAttr)
Removes the specified attribute node.
XAttr getAttributeNode([in] string name)
Retrieves an attribute node by name.
void removeAttribute([in] string name)
Removes an attribute by name.
void removeAttributeNS([in] string namespaceURI,[in] string localName)
Removes an attribute by local name and namespace URI.
string getTagName()
The name of the element.
XNodeList getElementsByTagNameNS([in] string namespaceURI,[in] string localName)
Returns a NodeList of all the descendant Elements with a given local name and namespace URI in the or...
string getAttributeNS([in] string namespaceURI, [in] string localName)
Retrieves an attribute value by local name and namespace URI.
Definition: Ambiguous.idl:22
void setAttributeNS([in] string namespaceURI, [in] string qualifiedName, [in] string value)
Adds a new attribute.
XNodeList getElementsByTagName([in] string name)
Returns a NodeList of all descendant Elements with a given tag name, in the order in which they are e...
Definition: XNodeList.idl:31
Definition: XElement.idl:29