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
Wiki Markup
{description}
{excerpt}Removes any [ConditionalFormat] objects from the current [Cell|Cell].{excerpt}
{signature:C#}
 public void RemoveConditionalFormat()
{signature}{signature:vb.net}
Public Sub RemoveConditionalFormat()
{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()
        {code}

{example}
{scrollbar}