Options that determine how a computer monitor evaluates a response.
enum CMResponseMatchOptionsEnum { cmrMatches = 1, cmrDoesNotMatch = 2, cmrScript = 4, cmrUseRegEx = 8 };
public enum CMResponseMatchOptionsEnum { cmrMatches = 1, cmrDoesNotMatch = 2, cmrScript = 4, cmrUseRegEx = 8 }
Public Enum CMResponseMatchOptionsEnum cmrMatches = 1 cmrDoesNotMatch = 2 cmrScript = 4 cmrUseRegEx = 8 End Enum
Members |
Description |
cmrMatches = 1 |
The trigger fires if the response matches the specified target text. |
cmrDoesNotMatch = 2 |
The trigger fires if the response does not match the specified target text. |
cmrScript = 4 |
The response is passed to a script for evaluation. |
cmrUseRegEx = 8 |
When combined with cmrMatches or cmrDoesNotMatch, indicates that the target text is a regular expression. |
adTempus API Reference version 3.0.0.0, revised 10/30/2008
|