Difference between revisions of "VS:IFC ImportLibrary"
From Vectorworks Developer
Line 5: | Line 5: | ||
----------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------- | ||
<desc> | <desc> | ||
− | Imports IFC Library of objects</desc> | + | Imports IFC Library of objects.</desc> |
----------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------- | ||
Line 24: | Line 24: | ||
strFilePath | strFilePath | ||
STRING | STRING | ||
− | + | Path to the Folder with IFC files | |
</line> | </line> | ||
<line> | <line> | ||
bKeepHierarchy | bKeepHierarchy | ||
BOOLEAN | BOOLEAN | ||
− | + | Boolean that determines whether the hierarchy of the library is preserved in the Symbol Folder hierarchy. | |
</line> | </line> | ||
</lineList> | </lineList> | ||
Line 38: | Line 38: | ||
----------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------- | ||
− | <remark></remark> | + | <remark> |
+ | This function is used when importing more than one IFC files simultaneously. | ||
+ | |||
+ | Please note that a Symbol Folder in the Resource Manager is created and every file is imported as a separate symbol. If the main folder contains a hierarchy of folders with more IFC files, the hierarchy can be conveyed in the Symbol Folder by setting bKeepHierarchy boolean to TRUE. | ||
+ | </remark> | ||
----------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------- |
Revision as of 10:20, 18 January 2019
.VectorScript|VectorScript ..VS:Function Reference|Function Reference ..VS:Function_Reference_Appendix|Appendix
Description
Imports IFC Library of objects.FUNCTION IFC_ImportLibrary(
strFilePath :STRING;
bKeepHierarchy :BOOLEAN) : BOOLEAN;
def vs.IFC_ImportLibrary(strFilePath, bKeepHierarchy): return BOOLEAN
Parameters
strFilePath STRING Path to the Folder with IFC files bKeepHierarchy BOOLEAN Boolean that determines whether the hierarchy of the library is preserved in the Symbol Folder hierarchy.
Remarks
This function is used when importing more than one IFC files simultaneously.Please note that a Symbol Folder in the Resource Manager is created and every file is imported as a separate symbol. If the main folder contains a hierarchy of folders with more IFC files, the hierarchy can be conveyed in the Symbol Folder by setting bKeepHierarchy boolean to TRUE.