adTempus API
ArcanaDevelopment.adTempus.Shared Namespace / TextMatchRule Enumeration


In This Topic
    TextMatchRule Enumeration
    In This Topic
    Rules for matching text
    Syntax
    'Declaration
     
    
    Public Enum TextMatchRule 
       Inherits System.Enum
    public enum TextMatchRule : System.Enum 
    public enum class TextMatchRule : public System.Enum 
    Members
    MemberValueDescription
    Contains1 Matches if the target contains the specified text.
    Equals3 Matches if the target exactly equals the specified text.
    NotContains2 Matches if the target does not contain the specified text.
    NotEquals4 Matches if the target does not exactly equal the specified text.
    StartsWith5 Matches if the target starts with the specified text.
    Unspecified0 No rule specified.
    Inheritance Hierarchy

    System.Object
       System.ValueType
          System.Enum
             ArcanaDevelopment.adTempus.Shared.TextMatchRule

    See Also