Message-ID: <214690357.8395.1711644670448.JavaMail.web05$@web05> Subject: Exported From Confluence MIME-Version: 1.0 Content-Type: multipart/related; boundary="----=_Part_8394_1960564275.1711644670448" ------=_Part_8394_1960564275.1711644670448 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Content-Location: file:///C:/exported.html Cell.RemoveConditionalFormat()

Cell.RemoveConditionalFormat()

Description=20

Removes any ConditionalFormat= objects from the current Cell.

= =20
C#
=20
 public void RemoveConditionalFormat()
=20
=20
vb.net
=20
Public Sub RemoveConditionalFormat()
=20
=20

Examples

=20
C#
=20

          ExcelApplication xla =3D new ExcelApplication();
          Workbook wb =3D xla.Create();
          wb.Worksheets[0].Cells[0,0].RemoveConditionalFormat();
        
=20
=20
vb.net
=20

          Dim xla As New ExcelApplication()
          Dim wb As Workbook =3D xla.Create()
          wb.Worksheets(0).Cells(0,0).RemoveConditionalFormat()
        
=20
------=_Part_8394_1960564275.1711644670448--