The utils sub-module exposes utility classes and functions that are helpful when building C3 applications.
Assuming that the C3 client component has been imported into the variable cee, the members in
the utils module may be accessed using the cee.utils prefix, e.g.:
The utils sub-module exposes utility classes and functions that are helpful when building C3 applications.
Assuming that the C3 client component has been imported into the variable
cee
, the members in the utils module may be accessed using thecee.utils
prefix, e.g.:// Setup picking var myPickHelper = new cee.utils.RemoteModelPickHelper(mySession, mySession.getViewerRef()); myPickHelper.setPickResultCallback(function(hitItem) { alert("Hit partId: " + hitItem.objectId); });