ActivEarth.Account.WallDisplay.MakeRowForTable C# (CSharp) Метод

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

Formats a single row to the table using the given message.
private MakeRowForTable ( ActivEarth message, Color backColor, Color textColor ) : System.Web.UI.WebControls.TableRow
message ActivEarth The message 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
Результат System.Web.UI.WebControls.TableRow
        private TableRow MakeRowForTable(ActivEarth.Objects.Groups.Message message, Color backColor, Color textColor)
        {
            TableRow newRow = new TableRow();
            newRow.BackColor = backColor;
            newRow.Cells.Add(MakeTextCellForRow("<b><u>" + message.Title + "</u></b><br/><br/>" +
                message.Text + "<br/><br/><br/>" + message.Time + "&nbsp;&nbsp;&nbsp;" + message.Date + "</div>", textColor));
            return newRow;
        }