Difference between revisions of "VS:IFC DMLoadSettings"
From Vectorworks Developer
NBeshevliev (Talk | contribs) |
|||
Line 32: | Line 32: | ||
----------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------- | ||
− | < | + | <return>TRUE on success, FALSE indicates failure.</return> |
− | + | ||
− | TRUE on success, FALSE indicates failure. | + | ----------------------------------------------------------------------------------------------------------- |
− | </remark> | + | <remark></remark> |
----------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------- |
Revision as of 03:54, 17 December 2018
.VectorScript|VectorScript ..VS:Function Reference|Function Reference ..VS:Function_Reference_Appendix|Appendix
Description
Loads the indicated IFC Data Mapping to Document.FUNCTION IFC_DMLoadSettings(
inStrParam :STRING) : BOOLEAN;
def vs.IFC_DMLoadSettings(inStrParam): return BOOLEAN
Parameters
inStrParam STRING IFC Data Mapping name. If parameter is Empty, it's going to Load the Default IFC Data Mapping.
Return Value
TRUE on success, FALSE indicates failure.Example
VectorScript
PROCEDURE Test; VAR ok : BOOLEAN; BEGIN ok := IFC_DMLoadSettings('MyIFCMapping'); END; RUN(Test);
Python
ok = vs.IFC_DMLoadSettings('MyIFCMapping')