Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migration of unmigrated content due to installation of a new plugin
Description

Excerpt

Removes any ConditionalFormat objects from the current Cell.

Signature
C#
C#
 public void RemoveConditionalFormat()
Signature
vb.net
vb.net
Public Sub RemoveConditionalFormat()
Example
Code Block
csharp
csharp
titleC#

          ExcelApplication xla = new ExcelApplication();
          Workbook wb = xla.Create();
          wb.Worksheets[0].Cells[0,0].RemoveConditionalFormat();
        
Code Block
vb.net
vb.net
titlevb.net

          Dim xla As New ExcelApplication()
          Dim wb As Workbook = xla.Create()
          wb.Worksheets(0).Cells(0,0).RemoveConditionalFormat()
        
Scrollbar