SOLIDOS API - SolidosGetNodeParam


SolidosGetNodeParam(nodeHandle, propertyName, runtimeData) - Returns the value of a property of a SOLIDOS object


Example of usage in Visual Lisp:

(setq device (handent "AF021")
length (SolidosGetNodeParam device "Length3D" nil))
;35.78

Example usage in Dynamo:

device = "AF021";
length = SolidosAPI.SolidosGetNodeParam(device, "Length3D", null);
#35.78