Link Search Menu Expand Document

Root.GetBookmark Property

</table>
Explanation Get a list of bookmarks.

Bookmark is a list of connection destination URLs saved by Biz / Browser and is automatically registered at login. The bookmark is retained even if you quit Biz / Browser, and you can use it the same way the next time you start it. The bookmark list is displayed on the standard login screen of Biz / Browser, and you can select the URL of the login destination. You can add a title string to the bookmark. Edit bookmarks with the SetBookmark and RemBookmark methods.

Added since Ver.4.0.1
Not supported in Mobile
Call format var list = //.GetBookmark( )
Return value Returns an array of Record objects with the following child objects:
Type Name Description
String url Bookmark URL
String title Bookmark title
Arguments None
Exception None
Example of use
    var list = //.GetBookmark();
    for (var n = 0; n < list.length; n++) {
        print(list[n].url, list[n].title, "\n");
    }
    
Related item SetBookmark, RemBookmark method