PHP de Satır ve Sütunları Gruplama ve Grubu Dağıtma
Contents
[
Hide
]
Aspose.Cells - Satırların ve Sütunların Grup Yönetimi
Satır ve Sütunların Gruplandırılması
Cells koleksiyonunun groupRows ve groupColumns yöntemlerini çağırarak satırları veya sütunları gruplamak mümkündür. Her iki yöntem de aşağıdaki parametreleri alır:
- İlk satır/sütun indeksi, grup içindeki ilk satır veya sütun.
- Son satır/sütun indeksi, grup içindeki son satır veya sütun.
- Gizli mi, satırları/sütunları gruplandırmadan sonra gizlemek için bir Boolean parametre.
PHP Kodu
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;
}
Satır ve Sütunların Grubunu Çıkarma
Cells koleksiyonunun UngroupRows ve UngroupColumns yöntemlerini çağırarak gruplanmış satırları veya sütunları çıkarabilirsiniz. Her iki yöntem de aşağıdaki parametreleri alır:
- İlk satır veya sütun dizini, ayrılmak istenen ilk satır/sütun.
- Son satır veya sütun dizini, ayrılmak istenen son satır/sütun.
PHP Kodu
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;
}
Çalışan Kodu İndir
Aşağıda belirtilen herhangi bir sosyal kodlama sitesinden Grup ve Grupsuz Sıraları ve Sütunları İndirin (Aspose.Cells):