Owner Property

Provides access to the name of the owner of the alert. The owner can be someone responsible for tracking and resolving the alert.

Syntax

ScriptContext.Alert.Owner
ScriptContext.CreateAlert.Owner

Access

Read/Write.

Return Type

String.

Example

To create a new alert and set the Owner property to CustomOwner, enter:


Dim MYalert
set MYalert = ScriptContext.CreateAlert
set MYalert.Owner = "CustomOwner"