Blocca e sblocca i riquadri

Congelamento di righe e colonne

Per bloccare un numero specifico di righe e colonne:

  1. Aggiungere il controllo Aspose.Cells.GridWeb a un Web Form.
  2. Accedi a un foglio di lavoro.
  3. Blocca un numero di righe e colonne.
// For complete examples and data files, please go to https://github.com/aspose-cells/Aspose.Cells-for-.NET
// Get user inputs for row, column, number of rows and number of columns
int row = Convert.ToInt16(txtRow.Text.Trim());
int column = Convert.ToInt16(txtColumn.Text.Trim());
int noOfRows = Convert.ToInt16(txtNoOfRows.Text.Trim());
int noOfColumns = Convert.ToInt16(txtNoOfColumns.Text.Trim());
// Accessing the reference of the worksheet that is currently active
GridWorksheet sheet = GridWeb1.WorkSheets[GridWeb1.ActiveSheetIndex];
// Freeze desired rows and columns
sheet.FreezePanes(row, column, noOfRows, noOfColumns);

Sblocco di righe e colonne

Per sbloccare righe e colonne:

  1. Aggiungere il controllo Aspose.Cells.GridWeb a un Web Form.
  2. Accedi a un foglio di lavoro.
  3. Sblocca righe e colonne.
// For complete examples and data files, please go to https://github.com/aspose-cells/Aspose.Cells-for-.NET
// Accessing the reference of the worksheet that is currently active
GridWorksheet sheet = GridWeb1.WorkSheets[GridWeb1.ActiveSheetIndex];
// Unfreezing rows and columns
sheet.UnFreezePanes();