ActiveReports Developer 7
Count Property
See Also  Example
GrapeCity.ActiveReports.Document.v7 Assembly > GrapeCity.ActiveReports.Document.Section Namespace > BookmarksCollection Class : Count Property

Glossary Item Box

Gets the number of Bookmark objects in the collection.

Syntax

Visual Basic (Declaration) 
Public ReadOnly Property Count As System.Integer
C# 
public System.int Count {get;}

Example

C#Copy Code
private void btnClearTOC_Click(object sender, System.EventArgs e)
{
    MessageBox.Show ("Clearing " + arv.Document.Bookmarks.Count.ToString() + " bookmarks.");
    arv.Document.Bookmarks.Clear();
    arv.TableOfContents.Clear();
}
Visual BasicCopy Code
Private Sub btnClearTOC_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnClearTOC.Click
    MsgBox("Clearing " & arv.Document.Bookmarks.Count.ToString & " bookmarks.")
    arv.Document.Bookmarks.Clear()
    arv.TableOfContents.Clear()
End Sub

See Also