Método System::Xml::XmlAttributeCollection::idx_get
Contenido
[
Ocultar
]XmlAttributeCollection::idx_get(const String&, const String&) method
Devuelve el atributo con el nombre local y el espacio de nombres Uniform Resource Identifier (URI) especificados.
SharedPtr<XmlAttribute> System::Xml::XmlAttributeCollection::idx_get(const String &localName, const String &namespaceURI)
| Parámetro | Tipo | Descripción |
|---|---|---|
| localName | const String& | El nombre local del atributo. |
| namespaceURI | const String& | El URI del espacio de nombres del atributo. |
ReturnValue
El atributo con el nombre local y el URI de espacio de nombres especificados. Si el atributo no existe, este método devuelve nullptr.
Ver también
- Typedef SharedPtr
- Class XmlAttribute
- Class String
- Class XmlAttributeCollection
- Namespace System::Xml
- Library Aspose.Page for C++
XmlAttributeCollection::idx_get(const String&) method
Devuelve el atributo con el nombre especificado.
SharedPtr<XmlAttribute> System::Xml::XmlAttributeCollection::idx_get(const String &name)
| Parámetro | Tipo | Descripción |
|---|---|---|
| name | const String& | El nombre calificado del atributo. |
ReturnValue
El atributo con el nombre especificado. Si el atributo no existe, este método devuelve nullptr.
Ver también
- Typedef SharedPtr
- Class XmlAttribute
- Class String
- Class XmlAttributeCollection
- Namespace System::Xml
- Library Aspose.Page for C++
XmlAttributeCollection::idx_get(int32_t) method
Devuelve el atributo con el índice especificado.
SharedPtr<XmlAttribute> System::Xml::XmlAttributeCollection::idx_get(int32_t i)
| Parámetro | Tipo | Descripción |
|---|---|---|
| i | int32_t | El índice del atributo. |
ReturnValue
El atributo en el índice especificado.
Ver también
- Typedef SharedPtr
- Class XmlAttribute
- Class XmlAttributeCollection
- Namespace System::Xml
- Library Aspose.Page for C++