AntTweakBar.Button.OnClicked C# (CSharp) Method

OnClicked() public method

Raises the Clicked event.
public OnClicked ( EventArgs e ) : void
e System.EventArgs
return void
        public void OnClicked(EventArgs e)
        {
            ThrowIfDisposed();

            if (Clicked != null) {
                Clicked(this, e);
            }
        }