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

lbAddGroup_Click() protected method

Handles the Click event of the lbAddGroup control.
protected lbAddGroup_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 lbAddGroup_Click( object sender, EventArgs e )
        {
            if ( AddGroupClick != null )
            {
                AddGroupClick( this, e );
            }
        }