Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 4.0
Description

Excerpt

Removes any ConditionalFormat objects from the current Cell.

{signature}
{example}{code:csharp|title=C#}

          ExcelApplication xla = new ExcelApplication();
          Workbook wb = xla.Create();
          wb.Worksheets[0].Cells[0,0].RemoveConditionalFormat();
        
{code}
{code:vb.net
|title=vb.net
}

          Dim xla As New ExcelApplication()
          Dim wb As Workbook = xla.Create()
          wb.Worksheets(0).Cells(0,0).RemoveConditionalFormat()
        
Signature
C#C#
Wiki Markup
{description}
{excerpt}Removes any [ConditionalFormat] objects from the current [Cell|Cell].{excerpt}
{signature:C#}
 public void RemoveConditionalFormat()
Signature
{signature}{signature:vb.net
vb.net
}
Public Sub RemoveConditionalFormat()
Example
Code Block
csharpcsharp
titleC#
Code Block
vb.nettitle

...

{code}

{example}
{scrollbar}