InfoConnect API Guide
Attachmate.Reflection.Productivity Namespace / IAutoExpand Interface / RemoveEntry Method
The dictionary abbreviation entry to remove.
Example


In This Topic
    RemoveEntry Method
    In This Topic
    Deletes an Auto Expand dictionary entry.
    Syntax
    'Declaration
     
    
    Sub RemoveEntry( _
       ByVal abbreviation As String _
    ) 
    'Usage
     
    
    Dim instance As IAutoExpand
    Dim abbreviation As String
     
    instance.RemoveEntry(abbreviation)
    void RemoveEntry( 
       string abbreviation
    )

    Parameters

    abbreviation
    The dictionary abbreviation entry to remove.
    Exceptions
    ExceptionDescription
    This exception is thrown if the input parameter is null (or in Visual Basic, is Nothing).
    Remarks
    This exception does nothing if the entry does not exist.
    Example
    AutoExpandDefinition autoExpandDef;
    string strAbb = autoExpandDef.Abbreviation;
    RemoveEntry(strAbb);
    See Also