I'm using PTVS 2.1 Beta 2 with IronPython 2.7.4 + Excel Interop to access Excel ranges. How can I view/print the data contained in the Excel ranges? For example if I take a range from A1 to D4, how can I view the data contained within the 4x4 2D array (16 cells):
xlrange = worksheet.Range["A1", "D4"] # 4x4 2D array.
print xlrange.Value2 # Does not display the contents of the 2D array.