Difference between revisions of "VS:IFC ImportWithUI"
From Vectorworks Developer
NBeshevliev (Talk | contribs) |
|||
Line 5: | Line 5: | ||
----------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------- | ||
<desc> | <desc> | ||
− | Imports IFC file | + | Imports IFC file using the IFC Impoer dialog.</desc> |
----------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------- |
Revision as of 03:10, 7 January 2019
.VectorScript|VectorScript ..VS:Function Reference|Function Reference ..VS:Function_Reference_Appendix|Appendix
Description
Imports IFC file using the IFC Impoer dialog.PROCEDURE IFC_ImportWithUI;
def vs.IFC_ImportWithUI(): return None
Return Value
TRUE on success, FALSE indicates failure.Example
VectorScript
PROCEDURE Test; BEGIN ok := IFC_ImportWithUI(); END; RUN(Test);
Python
ok = vs.IFC_ImportWithUI()