Tests if the current content node is a start tag.
Syntax
| Visual Basic (Declaration) | |
|---|
Public Overloads Overrides NotOverridable Function IsStartElement() As Boolean |
| C# | |
|---|
public override bool IsStartElement() |
| Delphi | |
|---|
public function IsStartElement(): Boolean; override; |
| JScript | |
|---|
public override function IsStartElement() : boolean; |
| Managed Extensions for C++ | |
|---|
public: bool IsStartElement(); override |
| C++/CLI | |
|---|
public:
bool IsStartElement(); override |
Return Value
true if MoveToContent finds a start tag or empty element tag; false if a node type other than XmlNodeType.Element was found.
See Also