Difference between revisions of "VS:IFC DefPsetImport"
From Vectorworks Developer
Line 29: | Line 29: | ||
</lineList> | </lineList> | ||
</params> | </params> | ||
+ | |||
+ | ----------------------------------------------------------------------------------------------------------- | ||
+ | <return></return> | ||
----------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------- |
Revision as of 03:57, 17 December 2018
.VectorScript|VectorScript ..VS:Function Reference|Function Reference ..VS:Function_Reference_Appendix|Appendix
Description
Imports Custom Object Presets from XML or text file.FUNCTION IFC_DefPsetImport(
strFilePath :STRING) : BOOLEAN;
def vs.IFC_DefPsetImport(strFilePath): return BOOLEAN
Parameters
strFilePath STRING The path to the file.
Example
PROCEDURE PsetImport; VAR bOK : BOOLEAN BEGIN {We suggest that we are importing from an Presets.xml file that is located on D:\Vectorwroks\Presets.xml} bOK := IFC_DefPsetImport( 'D:\Vectorwroks\Presets.xml'); END; RUN(PsetImport);
Python
# We suggest that we are importing from an Presets.xml file that is located on D:\Vectorwroks\Presets.xml ok = vs.IFC_DefPsetImport( 'D:\Vectorwroks\Presets.xml');
Version
Availability: from Vectorworks 2016See Also
IFC_DefPsetBegin[[VS:IFC_DefPsetBegin|IFC_DefPsetBegin]]
[[VS:IFC_DefPsetEnd|IFC_DefPsetEnd]]
[[VS:IFC_DefPsetAddMember|IFC_DefPsetAddMember]]