Property

Method

Event

 

 

GotoBookmark

Moves to the specified bookmark.

Syntax

    HRESULT GotoBookmark(
    BSTR str
    );

Parameters

str

[in] Name of the bookmark.

Return Values

0 (always)

Sample Codes

VBScript

function TestBtn_OnClick
   dim object
   set object = document.editForm
object.wec.GotoBookmark "MyBookmark"
end function