Aplicar estilo a una fila o columna
Aplicar estilo en una columna
Para aplicar un estilo personalizado en una columna usando Aspose.Cells.GridDesktop, siga los pasos a continuación:
- Acceda a cualquier Hoja de Cálculo deseada
- Acceda a una Columna en la que queremos aplicar un Estilo
- Obtenga el Estilo de la Columna
- Establecer las propiedades del Estilo según sus necesidades personalizadas
- Finalmente, establezca el Estilo de la Columna con el actualizado
Existen muchas propiedades y métodos útiles ofrecidos por el objeto Estilo que pueden ser utilizados por los desarrolladores para personalizar el estilo según sus requisitos.
// For complete examples and data files, please go to https://github.com/aspose-cells/Aspose.Cells-for-.NET | |
// Accessing the worksheet of the Grid that is currently active | |
Worksheet sheet = gridDesktop1.GetActiveWorksheet(); | |
// Accessing the first column of the worksheet | |
Aspose.Cells.GridDesktop.Data.GridColumn column = sheet.Columns[0]; | |
// Adding sample value to sheet cell | |
GridCell cell = sheet.Cells["a1"]; | |
cell.SetCellValue("Aspose"); | |
// Getting the Style object for the column | |
Style style = column.GetStyle(); | |
// Setting Style properties i.e. border, alignment color etc. | |
style.SetBorderLine(BorderType.Right, BorderLineType.Thick); | |
style.SetBorderColor(BorderType.Right, Color.Blue); | |
style.HAlignment = HorizontalAlignmentType.Centred; | |
// Setting the style of the column with the customized Style object | |
column.SetStyle(style); |
Aplicar estilo en una fila
Para aplicar un estilo personalizado en una fila usando Aspose.Cells.GridDesktop, siga los pasos a continuación:
- Acceda a cualquier Hoja de Cálculo deseada
- Acceda a una Fila en la que queremos aplicar un Estilo
- Obtenga el Estilo de la Fila
- Establecer las propiedades del Estilo según sus necesidades personalizadas
- Finalmente, establezca el Estilo de la Fila con el actualizado
Existen muchas propiedades y métodos útiles ofrecidos por el objeto Estilo que pueden ser utilizados por los desarrolladores para personalizar el estilo según sus requisitos.
// Accessing the worksheet of the Grid that is currently active
Worksheet sheet = gridDesktop1.GetActiveWorksheet();
// Accessing the first row of the worksheet
Aspose.Cells.GridDesktop.Data.GridRow row = sheet.Rows[0];
// Getting the Style object for the row
Style style = row.GetStyle();
// Setting Style properties i.e. border, color, alignment, background color etc.
style.SetBorderLine(BorderType.Right, BorderLineType.Thick);
style.SetBorderColor(BorderType.Right, Color.Blue);
style.HAlignment = HorizontalAlignmentType.Centred;
style.Color = Color.Yellow;
// Setting the style of the row with the customized Style object
row.SetStyle(style);