|
RecogniContact International Address Parser Help |
|
|
ATTENTION! The RecogniContact/COM help has moved to to http://address-parser.com/com_address_parser_help/ This page will go offline shortly. Please change your bookmarks. Class IContactParserThe class IContactParser is the interface to RecogniContact's parsing engine.Class Methodsprocedure Initialize(userName, licenseKey: WideString);Initializes the parser object with the specified license information. IContactParser.Initialize() must have been called before you can use IContactParser.Parse() Call IContactParser.Initialize() only once in your application. function Parse(const sourceText: WideString): IParsedContact; Parses the string in sourceText, and returns the parsing result as an IParsedContact object. IContactParser.Initialize() must be called once before calling IContactParser.Parse() The maximum length of sourceText is 8 kilobytes (8192 characters). function CreateSettingsObject: IParserSettings; procedure Settings(const Settings: IParserSettings); Allow you to retrieve the current settings, or adjust the parser settings. To change parser settings, proceed as follows:
For code samples see: function GetLicenseInfo(LicenseInfo: LicenseInfoType): WideString; Retrieves Information about your RecogniContact license.
|