ActivEarth.Groups.MembersDisplayTable.MakeBootCellForRow C# (CSharp) 메소드

MakeBootCellForRow() 개인적인 메소드

Formats a cell to add to the row with a button allowing the Owner to remove the User from the Group.
private MakeBootCellForRow ( int userId ) : TableCell
userId int The User ID of the User to remove from the Group
리턴 TableCell
        private TableCell MakeBootCellForRow(int userId)
        {
            TableCell newCell = new TableCell();

            Button b = new Button();
            b.ID = userId.ToString();
            b.CssClass = "Button";
            b.Text = "Remove User From Group";
            b.Click += new EventHandler(bootClick);

            newCell.Controls.Add(b);

            return newCell;
        }