ActivEarth.Groups.OwnedGroupsDisplayTable.MakeTextCellForRow C# (CSharp) Метод

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

Formats a cell to add to the row containing the given text.
private MakeTextCellForRow ( string text, Color textColor ) : System.Web.UI.WebControls.TableCell
text string The messages to display in the row
textColor Color
Результат System.Web.UI.WebControls.TableCell
        private TableCell MakeTextCellForRow(string text, Color textColor)
        {
            TableCell newCell = new TableCell();
            Label textLabel = new Label();
            textLabel.Text = text;
            textLabel.ForeColor = textColor;
            newCell.Controls.Add(textLabel);
            return newCell;
        }