Ocultar y mostrar filas y columnas en PHP
Contents
[
Hide
]
Aspose.Cells - Control de la visibilidad de filas y columnas
Ocultar filas y columnas
Los desarrolladores pueden ocultar una fila o columna llamando a los métodos HideRow y HideColumn de la colección Cells respectivamente. Ambos métodos toman el índice de fila/columna como parámetro para ocultar la fila o columna específica.
Código PHP
public static function hide_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();;
# Hiding the 3rd row of the worksheet
$cells->hideRow(2);
# Hiding the 2nd column of the worksheet
$cells->hideColumn(1);
# Saving the modified Excel file in default (that is Excel 2003) format
$workbook->save($dataDir . "Hide Rows And Columns.xls");
print "Hide Rows And Columns Successfully." . PHP_EOL;
}
Mostrar filas y columnas
Los desarrolladores pueden mostrar cualquier fila o columna oculta llamando a los métodos UnhideRow y UnhideColumn de la colección Cells respectivamente. Ambos métodos toman dos parámetros:
- Índice de fila o columna- el índice de una fila o columna que se utiliza para mostrar la fila o columna específica.
- Alto de fila o ancho de columna- el alto de fila o el ancho de columna asignado a la fila o columna después de mostrarse.
Código PHP
public static function unhide_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();;
# Unhiding the 3rd row and setting its height to 13.5
$cells->unhideRow(2,13.5);
# Unhiding the 2nd column and setting its width to 8.5
$cells->unhideColumn(1,8.5);
# Saving the modified Excel file in default (that is Excel 2003) format
$workbook->save($dataDir . "Unhide Rows And Columns.xls");
print "Unhide Rows And Columns Successfully." . PHP_EOL;
}
Descargar código de ejecución
Descargar**Control de la visibilidad de filas y columnas (Aspose.Cells)**de cualquiera de los sitios de codificación social mencionados a continuación: