Advertisement
yskang

adsk-forge-SelectionMonitor-step2

Apr 29th, 2019
173
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. onSelectionChange( event ) {
  2.     const dbIds = event.dbIdArray;
  3.     if( dbIds.length > 0 ) {
  4.         console.log( 'Now Selected: ', dbIds );
  5.     } else {
  6.         console.log( 'Now Nothing Selected' );
  7.     }
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement