{description}
{excerpt}Returns the [Range|ConditionalFormat.Range] of cells that is conditionally formatted by the current [ConditionalFormat|ConditionalFormat] object.{excerpt}
{signature:C#}
 public Range Range{ get; }
{signature}{signature:vb.net}
Public ReadOnly Property Range() As Range
{signature}
{example}{code:csharp|title=C#}

          ExcelApplication xla = new ExcelApplication();
          Workbook wb = xla.Create();
          ConditionalFormat cf = wb.CreateConditionalFormat();
          Range cfRange = cf.Range;
        {code}
{code:vb.net|title=vb.net}

          Dim xla As New ExcelApplication()
          Dim wb As Workbook = xla.Create()
          Dim cf As ConditionalFormat = wb.CreateConditionalFormat()
          Dim cfRange As Range = cf.Range
        {code}

{example}