scripting:collections

This is an old revision of the document!


Collection Objects

Collection objects used in different HE API calls and simplify access to object sets.

In general case collection object has following method/properties:

var pBookmarks = DocumentData.Bookmarks;
pBookmarks = DocumentData.Bookmarks
CComPtr<IBookmarks> pBookmarks;
HRESULT hr = DocumentData.get_Bookmarks(&pBookmarks);