Example #1
0
        /// <summary>
        /// Adds a row to <see cref="Rows"/> and returns it.
        /// </summary>
        /// <returns>The new row.</returns>
        public DashboardTableRow AddRow(DashboardTableRowType type = DashboardTableRowType.Body)
        {
            // Create the row.
            var row = new DashboardTableRow(type);

            this.Rows.Add(row);
            return(row);
        }
Example #2
0
 public DashboardTableRow(DashboardTableRowType dashboardTableRowType)
 {
     this.DashboardTableRowType = dashboardTableRowType;
 }