This default property returns the child NBElement whose Type, Namespace, Name and Index match the Type, Namespace, Name and Index specified.

C# | Visual Basic | Visual C++ | F# |
Public ReadOnly Default Property Element ( _ type As Integer, _ space As String, _ name As String, _ index As Integer _ ) As NBElement Get
public: property NBElement^ default[int type, String^ space, String^ name, int index] { NBElement^ get (int type, String^ space, String^ name, int index); }
member Element : NBElement

The index parameter requests that the n'th element with the matching Type, Namespace and Name is returned, where n is the value of the index.
If index is positive, the search is done forwards, starting with the FirstChild of this element.
If index is negative, the search is done backwards, starting with the LastChild of this element.