[]
Removes all of the conditional formatting from the cell at the specified row and column.
public void ClearConditionalFormating(int row, int column)
Public Sub ClearConditionalFormating(row As Integer, column As Integer)
Type | Name | Description |
---|---|---|
int | row | Row index |
int | column | Column index |
Removes all of the conditional formatting from the specified cell range.
public void ClearConditionalFormating(int row, int column, int rowCount, int columnCount)
Public Sub ClearConditionalFormating(row As Integer, column As Integer, rowCount As Integer, columnCount As Integer)
Type | Name | Description |
---|---|---|
int | row | Starting row index |
int | column | Starting column index |
int | rowCount | Number of rows |
int | columnCount | Number of columns |