function Bookmark_GetProperty(Handle, sProperty) As String
|
Reads a property from the bookmark configuration.
Parameters
| • | Handle ... Bookmark-Handle that is passed to the Event function. |
| • | sProperty ... String value. Bookmark property that should be read. |
Valid values of sProperty:
Value
|
Description
|
id
|
Reads the unique bookmark id.
|
name
|
Reads the bookmark name.
|
check_url
|
Reads the check URL.
|
infofield1
|
Reads the additional info field #1.
|
infofield2
|
Reads the additional info field #2.
|
infofield3
|
Reads the additional info field #3.
|
last_check_date
|
Date of the last check. The result is a string with format: yyyymmddhhmmss
|
last_change_date
|
Date of the last change. The result is a string with format: yyyymmddhhmmss
|
plugin_password
|
Password field that can be entered in the Plugin section.
|
crc_original_doc_web
|
Document checksum of the downloaded web version.
|
crc_original_doc_new
|
Document checksum of the locally saved version.
|
Example:
Sub Wsw_PreProcessPage(Handle, ByRef sMemWeb, ByRef sStatusMessage, ByRef iStatusCode)
Dim id
' Read the unique bookmark id
id = Bookmark_GetProperty(Handle, "id")
End Sub
|
|