Description Property

Provides access to the description of the alert. The description of an alert is typically the description of the event that generated the alert.

Syntax

ScriptContext.Alert.Description
ScriptContext.CreateAlert.Description

Access

Read/Write.

Return Type

String.

Example

To create a new alert and set the Description property to A short description of the alert, enter:


Dim MYalert
set MYalert = ScriptContext.CreateAlert
set MYalert.Description = "A short description of the alert"