コード例 #1
0
 /// <summary>
 /// Sets the attributes for the cell at the given location. </summary>
 /// <param name="row"> the row of the cell. </param>
 /// <param name="column"> the column of the cell. </param>
 /// <param name="useAttributes"> if true then attributes will be set on the cell to
 /// indicate that a value needs to be placed in the row.  If false, then the
 /// cell's attributes will be cleared. </param>
 public virtual void setCellAttributes(int row, int column, bool useAttributes)
 {
     if (useAttributes)
     {
         __worksheet.setCellAttributes(row, column, __needsFilled);
     }
     else
     {
         __worksheet.setCellAttributes(row, column, null);
     }
 }