Zum Hauptinhalt gehen

What is the event fired when a user clicks on the Layer Actions arrow?

Kommentare

1 Kommentar

  • Marc Rempel
    For whatever it is worth, I ended up catching the event using the ViewContainerActivatedEvent and then checking the id.  It fires a couple times, but I could do more interrogation to get what I needed.

     

     this.app.eventRegistry.event("ViewContainerActivatedEvent").subscribe(this, (args) => {

     

                    if (args.id === "LayerDataContainerView") {

     

    //code here

     

    }

     

    }
    0

Bitte melden Sie sich an, um einen Kommentar zu hinterlassen.