Clickable.clicked

Description

Callback triggered when the target element is clicked.

Encapsulates a method that has no parameters and does not return a value.

 public VisualElement CreateButton()
 {
     var button = new Button { text = "Press Me" };
     button.clicked += () =>
     {
         Debug.Log("Button was pressed!");
     };
     return button;
 }

Did you find this page useful? Please give it a rating: