System::Xml::XmlReader::IsStartElement método
XmlReader::IsStartElement() method
Llama a XmlReader::MoveToContent y verifica si el nodo de contenido actual es una etiqueta de inicio o una etiqueta de elemento vacío.
virtual bool System::Xml::XmlReader::IsStartElement()
ReturnValue
true if XmlReader::MoveToContent finds a start tag or empty element tag; false if a node type other than XmlNodeType::Element was found.
Ver también
- Class XmlReader
- Namespace System::Xml
- Library Aspose.Page for C++
XmlReader::IsStartElement(String, String) method
Llama a XmlReader::MoveToContent y verifica si el nodo de contenido actual es una etiqueta de inicio o una etiqueta de elemento vacío y si los valores XmlReader::get_LocalName y XmlReader::get_NamespaceURI del elemento encontrado coinciden con las cadenas proporcionadas.
virtual bool System::Xml::XmlReader::IsStartElement(String localname, String ns)
| Parámetro | Tipo | Descripción |
|---|---|---|
| nombre local | String | La cadena a comparar con el valor LocalName del elemento encontrado. |
| ns | String | La cadena a comparar con el valor NamespaceURI del elemento encontrado. |
ReturnValue
true if the resulting node is an element. false if a node type other than XmlNodeType::Element was found or if the LocalName and NamespaceURI values of the element do not match the specified strings.
Ver también
- Class String
- Class XmlReader
- Namespace System::Xml
- Library Aspose.Page for C++
XmlReader::IsStartElement(String) method
Llama a XmlReader::MoveToContent y verifica si el nodo de contenido actual es una etiqueta de inicio o una etiqueta de elemento vacío y si el valor XmlReader::get_Name del elemento encontrado coincide con el argumento proporcionado.
virtual bool System::Xml::XmlReader::IsStartElement(String name)
| Parámetro | Tipo | Descripción |
|---|---|---|
| name | String | La cadena comparada con el valor Name del elemento encontrado. |
ReturnValue
true if the resulting node is an element and the Name value matches the specified string. false if a node type other than XmlNodeType::Element was found or if the element Name value does not match the specified string.
Ver también
- Class String
- Class XmlReader
- Namespace System::Xml
- Library Aspose.Page for C++