Returns the Range of cells that is conditionally formatted by the current ConditionalFormat object.

public Range Range{ get; }
Public ReadOnly Property Range() As Range
          ExcelApplication xla = new ExcelApplication();
          Workbook wb = xla.Create();
          ConditionalFormat cf = wb.CreateConditionalFormat();
          Range cfRange = cf.Range;
        
          Dim xla As New ExcelApplication()
          Dim wb As Workbook = xla.Create()
          Dim cf As ConditionalFormat = wb.CreateConditionalFormat()
          Dim cfRange As Range = cf.Range