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

<table class="wysiwyg-macro" data-macro-name="unmigrated-wiki-markup" style="background-image: url(/plugins/servlet/confluence/placeholder/macro-heading?definition=e3VubWlncmF0ZWQtd2lraS1tYXJrdXB9&amp;locale=en_GB&amp;version=2); background-repeat: no-repeat;" data-macro-body-type="PLAIN_TEXT"><tr><td class="wysiwyg-macro-body"><pre>
 public Range Range{ get; }
</pre></td></tr></table>
<p>Public ReadOnly Property Range() As Range</p>

          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