System::Xml::XmlTextReader::GetAttribute method
XmlTextReader::GetAttribute(int32_t) method
指定されたインデックスの属性の値を返します。
String System::Xml::XmlTextReader::GetAttribute(int32_t i) override
| パラメーター | 型 | 説明 |
|---|---|---|
| i | int32_t | 属性のインデックス。インデックスはゼロベースです。(最初の属性のインデックスは 0 です。) |
ReturnValue
指定された属性の値。
参照
- Class String
- Class XmlTextReader
- Namespace System::Xml
- Library Aspose.Page for C++
XmlTextReader::GetAttribute(String, String) method
指定されたローカル名と名前空間 URI を持つ属性の値を返します。
String System::Xml::XmlTextReader::GetAttribute(String localName, String namespaceURI) override
| パラメーター | 型 | 説明 |
|---|---|---|
| localName | String | 属性のローカル名。 |
| namespaceURI | String | 属性の名前空間 URI。 |
ReturnValue
指定された属性の値です。属性が見つからない場合は nullptr が返されます。このメソッドはリーダーを移動しません。
参照
- Class String
- Class XmlTextReader
- Namespace System::Xml
- Library Aspose.Page for C++
XmlTextReader::GetAttribute(String) method
指定された名前の属性の値を返します。
String System::Xml::XmlTextReader::GetAttribute(String name) override
| パラメーター | 型 | 説明 |
|---|---|---|
| name | String | 属性の完全修飾名です。 |
ReturnValue
指定された属性の値。属性が見つからない場合、nullptr が返されます。
参照
- Class String
- Class XmlTextReader
- Namespace System::Xml
- Library Aspose.Page for C++