Sub Bookmark_SetProperty($property As String, $value As String)


Changes a Bookmark configuration.


Parameters


  • $property ... String value. The Bookmark property to change.
  • $value ... String value. The value to assign.


Valid values of $property:

Value

Description

check_url

Defines the URL to be checked.


Info: The Bookmark properties are not changed permanently, they are changed only temporarily for the current check. These changes are not visible in the Bookmark properties. This function is typically used in the event function Wsw_BeforeCheck.

main_url

Replaces the main URL in the Bookmark properties.


Info: This change is permanent and modifies the URL in the Bookmark properties.

pagetype

Overrides the page type used for the check.

Valid values for pagetype are:

autodetect, html, text, rss, atom, binary


Info: The Bookmark properties are not changed permanently, they are changed only temporarily for the current check. These changes are not visible in the Bookmark properties. This function is typically used in the event function Wsw_BeforeCheck.

checktechnology

Overrides the checking technology used for the check.

Valid values for checktechnology are:

intern, chromium, chromium-incognito, edge, edge-incognito


Info: The Bookmark properties are not changed permanently, they are changed only temporarily for the current check. These changes are not visible in the Bookmark properties. This function is typically used in the event function Wsw_BeforeCheck.

checkmethod

Overrides the checking method used for the check. This setting is used only by the internal check technology.

Valid values for checkmethod are:

automatic, content, date, size


Info: The Bookmark properties are not changed permanently, they are changed only temporarily for the current check. These changes are not visible in the Bookmark properties. This function is typically used in the event function Wsw_BeforeCheck.

name

Writes the Bookmark name.

note

Writes the Bookmark note.

infofield1

Writes the additional info field #1.

infofield2

Writes the additional info field #2.

infofield3

Writes the additional info field #3.

MarkAsRead

Marks a changed Bookmark as read.

Valid value is: "1"


Example: Bookmark_SetProperty("MarkAsRead", "1")

dont_check_minutes

Temporarily disables Bookmark checking for the specified number of minutes, the value must be specified in quotes.


Example: Bookmark_SetProperty("dont_check_minutes", "10")

ignore_filter

Defines an ignore filter that is used temporarily for the check. Multiple filters must be separated by a carriage return and line feed (CRLF).


Example: Bookmark_SetProperty("ignore_filter", "filter1" + CRLF + "filter2")


Info: The Bookmark properties are not changed permanently, they are changed only temporarily for the current check. These changes are not visible in the Bookmark properties. This function is typically used in the event function Wsw_BeforeCheck.

watch_filter

Defines a watch filter that is used temporarily for the check. Multiple filters must be separated by a carriage return and line feed (CRLF).


Example: Bookmark_SetProperty("watch_filter", "filter1" + CRLF + "filter2")


Info: The Bookmark properties are not changed permanently, they are changed only temporarily for the current check. These changes are not visible in the Bookmark properties. This function is typically used in the event function Wsw_BeforeCheck.

filter_ignore_removed_content

Enables the special filter "Ignore removed elements".

Valid values are: "0" and "1"


Example: Bookmark_SetProperty("filter_ignore_removed_content", "1")


Info: The Bookmark properties are not changed permanently, they are changed only temporarily for the current check. These changes are not visible in the Bookmark properties. This function is typically used in the event function Wsw_BeforeCheck.


Example:

Sub Wsw_BeforeCheck()
   
   ' Change bookmark pagetype to "text"
   Bookmark_SetProperty("pagetype", "text")
End Sub