InfoConnect for Unisys
RemoveEntry Method
Example 


The dictionary abbreviation entry to remove.
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
System.ArgumentNullException 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