Platform SDK: Exchange Server

Row

The Row object represents a single row (a single activity) in the process map. A Row object is a top-level object and can be created independently. After creating a new row, you provide values for the Action, ActivityID, and Flags properties, where ActivityID is a unique line number identifying the row, Action is the name of the action to be performed, and Flags denotes the type of action (intrinsic or script).

The remaining columns in a Row are an array of arguments, set using the SetArgs method. The number of arguments is dependent on the particular Action function used. Argc is the number of arguments, and Argv is a string array containing the argument values.

Property Type Access
Action String Read/write
ActivityID Long Read/write
Flags Long Read/write
(0 = Intrinsic Action
2 = Script Action)

Methods Parameters
CopyTo [in] Target as Row
GetArgs [out] Argc as Long

[out] Argv as Array of String

SetArgs [in] Argc as Long

[in] Argv as Array of String