Difference between revisions of "VS:IFC DMLoadSettings"
From Vectorworks Developer
m (fix typo) |
|||
Line 25: | Line 25: | ||
inStrParam | inStrParam | ||
STRING | STRING | ||
− | IFC Data Mapping name. If parameter is Empty, it's going to | + | IFC Data Mapping name. If parameter is Empty, it's going to load the Default IFC Data Mapping. |
</line> | </line> |
Latest revision as of 05:55, 11 June 2020
.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')