A boolean value indicating whether or not to copy row height.

 public boolean CopyRowHeight{ get; set; }
Public Property CopyRowHeight() As Boolean

If this value is set to true, then row height of rows in the destination worksheet will be adjusted to match the row height from the corresponding row in the source worksheet. It is recommended that you do not turn on this setting without testing the results as multiple copy-paste operations into a worksheet may have undesired affects.


          //--- Is the property object set to copy row height?
          boolean willCopyRowHeight = copyPasteProperties.CopyRowHeight;

          //--- Set the property object to copy cell values.
          copyPasteProperties.CopyRowHeight = true;
        

          '--- Is the property object set to copy row height?
          Dim willCopyRowHeight As Boolean = copyPasteProperties.CopyRowHeight

          '--- Set the property object to copy row height.
          copyPasteProperties.CopyRowHeight = True