Manages a collection of XML Index Tags.
Members
Name | Description | |
---|---|---|
![]() |
Add | Add a tag to the collection. |
![]() |
Find | Find a tag in the collection by name. |
![]() |
Remove | Remove a tag from the collection. |
![]() |
RemoveAll | Remove all tags from the collection. |
![]() |
Tag | A tag by position in the collection. |
![]() |
TagCount | The number of tags in the collection. |
IXMLIndexTags.Add Method
Add a tag to the collection.
Public Sub Add ( _
ByVal Tag As IXMLIndexTag _
)
public void Add (
IXMLIndexTag Tag
);
IXMLIndexTags.Find Method
Find a tag in the collection by name.
Public Sub Find ( _
ByVal tagName As String, _
ByRef tagIndex As Integer _
)
public void Find (
string tagName,
ref int tagIndex
);
IXMLIndexTags.Remove Method
Remove a tag from the collection.
Public Sub Remove ( _
ByVal Tag As IXMLIndexTag _
)
public void Remove (
IXMLIndexTag Tag
);
IXMLIndexTags.RemoveAll Method
Remove all tags from the collection.
Public Sub RemoveAll ( _
)
public void RemoveAll (
);
IXMLIndexTags.Tag Property
A tag by position in the collection.
Public Function get_Tag ( _
ByVal tagIndex As Integer _
) As IXMLIndexTag
public IXMLIndexTag get_Tag (
int tagIndex
);
IXMLIndexTags.TagCount Property
The number of tags in the collection.
Public ReadOnly Property TagCount As Integer
public int TagCount {get;}
Classes that implement IXMLIndexTags
Classes | Description |
---|---|
XMLIndexTags | XML Index Tags Collection Object. |