OpenXmlElement.GetAttribute(String, String) Method

Definition

Gets an Open XML attribute with the specified tag name and namespace URI.

public DocumentFormat.OpenXml.OpenXmlAttribute GetAttribute (string localName, string namespaceUri);
member this.GetAttribute : string * string -> DocumentFormat.OpenXml.OpenXmlAttribute
Public Function GetAttribute (localName As String, namespaceUri As String) As OpenXmlAttribute

Parameters

localName
String

The tag name.

namespaceUri
String

The namespace URI.

Returns

Returns a clone of the OpenXmlAttribute with local name equal to "localName" and namespace URI equal to "namespaceUri".

Exceptions

When the "localName" is empty.

When the element does not have the specified attribute.

Applies to