行と列のリサイズ

行の高さと列の幅の設定

行の高さの設定

行の高さを設定するには:

  1. Aspose.Cells.GridWebコントロールをWebフォームに追加します。
  2. ワークシートの Cells コレクションにアクセスします。
  3. 指定された行内のすべてのセルの高さを設定します。
// For complete examples and data files, please go to https://github.com/aspose-cells/Aspose.Cells-for-.NET
// Get row index entered by user
int rowIndex = Convert.ToInt16(txtRowIndex.Text.Trim());
// Get row height entered by user
int rowHeight = Convert.ToInt16(txtRowHeight.Text.Trim());
// Accessing the cells collection of the worksheet that is currently active
GridCells cells = GridWeb1.WorkSheets[GridWeb1.ActiveSheetIndex].Cells;
// Resize row at specified index to specified height
cells.SetRowHeight(rowIndex, rowHeight);

列の幅の設定

列の幅を設定するには:

  1. Aspose.Cells.GridWebコントロールをWebフォームに追加します。
  2. ワークシートの Cells コレクションにアクセスします。
  3. 指定された列内のすべてのセルの幅を設定します。
// For complete examples and data files, please go to https://github.com/aspose-cells/Aspose.Cells-for-.NET
// Get column index entered by user
int columnIndex = Convert.ToInt16(txtColumnIndex.Text.Trim());
// Get column width entered by user
int columnWidth = Convert.ToInt16(txtColumnWidth.Text.Trim());
// Accessing the cells collection of the worksheet that is currently active
GridCells cells = GridWeb1.WorkSheets[GridWeb1.ActiveSheetIndex].Cells;
// Resize column at specified index to specified width
cells.SetColumnWidth(columnIndex, columnWidth);