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


RemoveEntry Method
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)

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