1
Automation Interface, Add-Ins and Tools / Re: Problems with Model Add-In Event EA_OnTabChanged parameters
« on: November 05, 2025, 08:29:14 am »
What that means is that the parameter is passed by reference (Although there's no good reason for it to do that originally, now the reason is to not break existing add-ins)
Javascript passes objects by reference and primitives by value, so the code has wrapped the value in an object.
Use TabName.val and DiagramID.val.
Javascript passes objects by reference and primitives by value, so the code has wrapped the value in an object.
Use TabName.val and DiagramID.val.