Difference between revisions of "VS:IFC ImportNoUI"
From Vectorworks Developer
NBeshevliev (Talk | contribs) |
NBeshevliev (Talk | contribs) |
||
Line 45: | Line 45: | ||
BEGIN | BEGIN | ||
− | + | IFC_ImportNoUI('D:\Import\Test.ifc'); | |
END; | END; | ||
Line 52: | Line 52: | ||
==== Python ==== | ==== Python ==== | ||
<code lang="py"> | <code lang="py"> | ||
− | + | vs.IFC_ImportNoUI('D:\Import\Test.ifc') | |
</code> | </code> | ||
</sample> | </sample> |
Latest revision as of 03:40, 28 January 2019
.VectorScript|VectorScript ..VS:Function Reference|Function Reference ..VS:Function_Reference_Appendix|Appendix
Description
Imports IFC file without showing any dialog.PROCEDURE IFC_ImportNoUI(
strFilePath :STRING);
def vs.IFC_ImportNoUI(strFilePath): return None
Parameters
strFilePath STRING File path.
Return Value
There is no return value.Example
VectorScript
PROCEDURE Test; BEGIN IFC_ImportNoUI('D:\Import\Test.ifc'); END; RUN(Test);
Python
vs.IFC_ImportNoUI('D:\Import\Test.ifc')