Raggruppamento e svincolo righe e colonne in PHP
Contents
[
Hide
]
Aspose.Cells - Gestione del raggruppamento di righe e colonne
Raggruppamento di righe e colonne
È possibile raggruppare righe o colonne chiamando i metodi groupRows e groupColumns della collezione Cells. Entrambi i metodi accettano i seguenti parametri:
- Indice della prima riga/colonna, la prima riga o colonna nel gruppo.
- Indice dell’ultima riga/colonna, l’ultima riga o colonna nel gruppo.
- È nascosto, un parametro booleano che specifica se nascondere o meno righe/colonne dopo il raggruppamento.
Codice PHP
public static function group_rows_columns($dataDir)
{
# Instantiating a Workbook object by excel file path
$workbook = new Workbook($dataDir . 'Book1.xls');
# Accessing the first worksheet in the Excel file
$worksheet = $workbook->getWorksheets()->get(0);
$cells = $worksheet->getCells();;
# Grouping first six rows (from 0 to 5) and making them hidden by passing true
$cells->groupRows(0,5,true);
# Grouping first three columns (from 0 to 2) and making them hidden by passing true
$cells->groupColumns(0,2,true);
# Saving the modified Excel file in default (that is Excel 2003) format
$workbook->save($dataDir . "Group Rows And Columns.xls");
print "Group Rows And Columns Successfully." . PHP_EOL;
}
Sganciare Righe e Colonne
Sraggruppare righe o colonne raggruppate chiamando i metodi UngroupRows e UngroupColumns della collezione Cells. Entrambi i metodi accettano gli stessi parametri:
- Indice della prima riga o colonna, la prima riga/colonna da sraggruppare.
- Indice dell’ultima riga o colonna, l’ultima riga/colonna da sraggruppare.
Codice PHP
public static function ungroup_rows_columns($dataDir)
{
# Instantiating a Workbook object by excel file path
$workbook = new Workbook($dataDir . 'Group Rows And Columns.xls');
# Accessing the first worksheet in the Excel file
$worksheet = $workbook->getWorksheets()->get(0);
$cells = $worksheet->getCells();;
# Ungrouping first six rows (from 0 to 5)
$cells->ungroupRows(0,5);
# Ungrouping first three columns (from 0 to 2)
$cells->ungroupColumns(0,2);
# Saving the modified Excel file in default (that is Excel 2003) format
$workbook->save($dataDir . "Ungroup Rows And Columns.xls");
print "Ungroup Rows And Columns Successfully." . PHP_EOL;
}
Scarica il codice in esecuzione
Scarica il Raggruppamento & Sraggruppamento Righe & Colonne (Aspose.Cells) da qualunque dei siti di codice sociale di seguito menzionati: