DeleteBookmark Method of the Paragraph Object
This method deletes the specified bookmark of any type (technical or user) from the paragraph. You must specify its name with the prefix.
Syntax
HRESULT DeleteBookmark( BSTR Bookmark );
Parameters
- Bookmark
- [in] This variable specifies the bookmark to be deleted.
Remarks
The user bookmarks to be deleted must be specified in the format "UserDefinedBookmark:<my_user_bookmark>":
// Create bookmark paragraph->SetBookmark( 0, count, L"my_user_bookmark" ); //... //Delete bookmark paragraph->DeleteBookmark( L"UserDefinedBookmark:my_user_bookmark" );
Return values
This method has no specific return values. It returns the standard return values of ABBYY FineReader Engine functions.
See also
03.07.2024 8:50:25