Изменение высоты строк и ширины столбцов
Contents
[
Hide
]
Иногда значения ячеек шире, чем сами ячейки, или расположены на нескольких строках. Такие значения не полностью видны пользователю, если он не изменит высоту и ширину строк и столбцов. В GridWeb полностью поддерживается установка высоты строк и ширины столбцов. В данной теме подробно обсуждаются эти функции с примерами.
Работа с высотой строк и шириной столбцов
Установка высоты строк
Чтобы установить высоту строки:
- Добавьте элемент управления Aspose.Cells.GridWeb на свою веб-форму.
- Получить доступ к коллекции ячеек листа.
- Установите высоту всех ячеек в любой указанной строке.
Метод SetRowHeight и SetColumnWidth коллекции Cells также имеет варианты для установки измерений высоты строки и ширины столбца в дюймах и пикселах.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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); |
Установка ширины столбца
Чтобы установить ширину столбца:
- Добавьте элемент управления Aspose.Cells.GridWeb на свою веб-форму.
- Получить доступ к коллекции ячеек листа.
- Установить ширину всех ячеек в указанном столбце.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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); |