Attachmate.Reflection Assembly > Attachmate.Reflection.Productivity Namespace > IAutoExpand Interface : AddEntry Method |
'Declaration
Sub AddEntry( _ ByVal abbreviation As String, _ ByVal expansion As String _ )
'Usage
Dim instance As IAutoExpand Dim abbreviation As String Dim expansion As String instance.AddEntry(abbreviation, expansion)
void AddEntry( string abbreviation, string expansion )
Exception | Description |
---|---|
System.ArgumentNullException | This exception is thrown if either of the input parameters are null (or in Visual Basic, are Nothing). |
AutoExpandDefinition autoExpandDef; string strAbb = autoExpandDef.Abbreviation; string strExp = autoExpandDef.Expansion; AddEntry(strAbb,strExp);