ActivEarth.Groups.MembersDisplayTable.MakeRowForSeeAllTable C# (CSharp) Метод

MakeRowForSeeAllTable() приватный Метод

Formats a single row for the table of all Users containing the given User.
private MakeRowForSeeAllTable ( User user, Color backColor, Color textColor ) : TableRow
user User The User to display in the row
backColor Color The background color to display in the row
textColor Color The text color to display in the row
Результат TableRow
        private TableRow MakeRowForSeeAllTable(User user, Color backColor, Color textColor)
        {
            TableRow newRow = new TableRow();
            newRow.BackColor = backColor;
            newRow.Cells.Add(MakeImageCellForRow(user));
            newRow.Cells.Add(MakeTextCellForRow(user.UserName, textColor));
            return newRow;
        }