Exemplo n.º 1
0
 /// <summary>
 /// Fill table row with data
 /// </summary>
 /// <param name="row">Row to write into.</param>
 /// <param name="cellData">Cell data to write into the row.</param>
 /// <returns>The row which has been written into.</returns>
 public static XWPFTableRow FillRow(this XWPFTableRow row, params object[] cellData)
 {
     return(row.FillRow(cellData as IEnumerable <object>));
 }
Exemplo n.º 2
0
 /// <summary>
 /// Fill table row with data
 /// </summary>
 /// <param name="row">Row to write into.</param>
 /// <param name="cellData">Cell data to write into the row.</param>
 /// <returns>The row which has been written into.</returns>
 public static XWPFTableRow FillRow(this XWPFTableRow row, params string[] cellData)
 {
     return(row.FillRow(cellData as IEnumerable <string>));
 }