Rock.Web.UI.Controls.LinkButtonField.OnClick C# (CSharp) Method

OnClick() public method

Raises the E:Click event.
public OnClick ( RowEventArgs e ) : void
e RowEventArgs The instance containing the event data.
return void
        public virtual void OnClick( RowEventArgs e )
        {
            if ( Click != null )
            {
                Click( this, e );
            }
        }