Rock.Web.UI.Controls.CheckinGroupRow.lblDeleteGroup_Click C# (CSharp) Method

lblDeleteGroup_Click() protected method

Handles the Click event of the lblDeleteGroup control.
protected lblDeleteGroup_Click ( object sender, EventArgs e ) : void
sender object The source of the event.
e System.EventArgs The instance containing the event data.
return void
        protected void lblDeleteGroup_Click( object sender, EventArgs e )
        {
            if ( DeleteGroupClick != null )
            {
                DeleteGroupClick( this, e );
            }
        }