Tabelle e intervalli
Introduzione
A volte si crea una tabella in Microsoft Excel e non si desidera continuare a lavorare con la funzionalità di tabella che la accompagna. Piuttosto, si desidera qualcosa che assomigli a una tabella. Per mantenere i dati in una tabella senza perdere la formattazione, convertire la tabella in un intervallo regolare di dati. Aspose.Cells supporta questa funzionalità di Microsoft Excel per tabelle e oggetti elenco.
Utilizzando Microsoft Excel
Utilizzare la funzionalità Converti in Intervallo per convertire rapidamente una tabella in un intervallo senza perdere la formattazione. In Microsoft Excel 2007/2010:
- Fare clic ovunque nella tabella per garantire che la cella attiva sia in una colonna della tabella.
- Sulla scheda Design, nel gruppo Strumenti, fare clic su Converti in intervallo.
Usare Aspose.Cells
// For complete examples and data files, please go to https://github.com/aspose-cells/Aspose.Cells-for-.NET | |
// The path to the documents directory. | |
string dataDir = RunExamples.GetDataDir(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType); | |
// Open an existing file that contains a table/list object in it | |
Workbook wb = new Workbook(dataDir + "book1.xlsx"); | |
// Convert the first table/list object (from the first worksheet) to normal range | |
wb.Worksheets[0].ListObjects[0].ConvertToRange(); | |
// Save the file | |
wb.Save(dataDir + "output.xlsx"); |
Converti Tabella in Intervallo con Opzioni
Aspose.Cells fornisce opzioni aggiuntive durante la conversione della tabella in un intervallo tramite la classe TableToRangeOptions. La classe TableToRangeOptions fornisce la proprietà LastRow che consente di impostare l’ultimo indice della riga della tabella. La formattazione della tabella verrà mantenuta fino all’indice di riga specificato e il resto della formattazione verrà rimossa.
Il codice di esempio qui sotto dimostra l’uso della classe TableToRangeOptions.
// For complete examples and data files, please go to https://github.com/aspose-cells/Aspose.Cells-for-.NET | |
// The path to the documents directory. | |
string dataDir = RunExamples.GetDataDir(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType); | |
// Open an existing file that contains a table/list object in it | |
Workbook workbook = new Workbook(dataDir + "book1.xlsx"); | |
TableToRangeOptions options = new TableToRangeOptions(); | |
options.LastRow = 5; | |
// Convert the first table/list object (from the first worksheet) to normal range | |
workbook.Worksheets[0].ListObjects[0].ConvertToRange(options); | |
// Save the file | |
workbook.Save(dataDir + "output.xlsx"); |