[]
        
(Showing Draft Content)

GrapeCity.ActiveReports.Document.Section.BookmarksCollection.Remove

Remove Method

Remove(Bookmark)

Removes the object from the collection.

Declaration
public void Remove(Bookmark value)
Parameters
Type Name Description
Bookmark value

Object to remove from the collection.

Examples
private void RemoveBookmark(Bookmark bookmarkToRemove)
{
	while (bookMarkCollection.Contains(bookmarkToRemove))
	{
		bookMarkCollection.Remove(bookmarkToRemove);
	}
	bool isRemoved = bookMarkCollection.Contains(bookmarkToRemove)//should be false
}