InfoConnect API Guide
Attachmate.Reflection.Productivity Namespace / IAutoExpand Interface / ContainsEntry Method
An Auto Expand dictionary entry. This should be the abbreviation that gets expanded.


In This Topic
    ContainsEntry Method
    In This Topic
    Determines whether a given entry exists in the Auto Expand dictionary.
    Syntax
    'Declaration
     
    
    Function ContainsEntry( _
       ByVal abbreviation As String _
    ) As Boolean
    'Usage
     
    
    Dim instance As IAutoExpand
    Dim abbreviation As String
    Dim value As Boolean
     
    value = instance.ContainsEntry(abbreviation)
    bool ContainsEntry( 
       string abbreviation
    )

    Parameters

    abbreviation
    An Auto Expand dictionary entry. This should be the abbreviation that gets expanded.

    Return Value

    True if the abbreviation has an expansion definition; false if it does not.
    Exceptions
    ExceptionDescription
    This exception is thrown if the input parameter is null (or in Visual Basic, is Nothing).
    See Also