scripting:api:file-handler:load

Action unknown: addtobook

Load

Method of IFileHandler

Called when file to be loaded

  • BSTR strFileName
  • BSTR strDocumentType = "" (optional)
var ppDocument = FileHandler.Load(strFileName, strDocumentType);
ppDocument = FileHandler.Load strFileName, strDocumentType
CComPtr<IExternalDocument> pDocument;
HRESULT hr = FileHandler.Load(strFileName, strDocumentType, &pDocument);