/// <summary>Constructor.</summary>
 /// <param name="document">Inventor document.</param>
 /// <param name="allowedParameters">Map with Inventor parameters, which are allowed to be extracted.</param>
 public iLogicFormsReader(Document document, InventorParameters allowedParameters)
 {
     _allowedParameters = allowedParameters;
     _storage           = UiStorageFactory.GetDocumentStorage(document);
 }
Exemple #2
0
 /// <summary> Constructor. </summary>
 public iLogicFormsReader(Document document, string folder)
 {
     this.storage    = UiStorageFactory.GetDocumentStorage(document);
     this.document   = document;
     this.folderPath = folder;
 }