Sub Wsw_BeforeCheck()


This function is called before a bookmark check starts. You can use it to modify bookmark properties before the check begins.


The bookmark properties are not changed permanently. They are modified only temporarily for the current bookmark check. These changes are not visible in the bookmark properties dialog.


Example:

Sub Wsw_BeforeCheck()

   ' Add entry to the bookmark check log
   Bookmark_AddLog("Wsw_BeforeCheck> Adjust pagetype and checkmethod")

   ' Change bookmark properties
   Bookmark_SetProperty("pagetype", "html")
   Bookmark_SetProperty("checkmethod", "automatic")
End Sub