If that is so, how would I identify the conditional formatting applied to a perticular cell And how does this method helps me remove the formatting from a single cell of my choice?
May be I bit confused here...
while specifying 0 I can understand that you are using a collection object... What I am not clear about is...
If I were to remove conditional formatting from a perticular cell, then how do I do that. Please see the inline comments in the example you provided me... Please clarify the comments in Red.
//getting the workbook instance form the excel sheet...
Workbook objWB1 = new Workbook("C:\\test_ConditionalFormat.xlsx");
//getting the worksheet instance form the loaded workbook...
Worksheet objWS1 = objWB1.Worksheets[0];
//Getting the format condition collections from the worksheet object
//How does following code specify that I am accessing the format conditions in cell say "A10"... Element at index 0 could be any cell at Nth row and Nth column as per my understanding? Please clarify!
FormatConditionCollection fcs = objWS1.ConditionalFormattings[0];
fcs.RemoveArea(0);