Column classe

Column classe

Rappresenta una singola colonna in un foglio di lavoro.

Il tipo Column espone i seguenti membri:

Proprietà

ProprietàDescrizione
indexOttiene l’indice di questa colonna.
widthOttiene e imposta la larghezza della colonna in unità di caratteri.
group_levelOttiene il livello di gruppo della colonna.
is_hiddenIndica se la colonna è nascosta.
has_custom_styleIndica se questa colonna ha impostazioni di stile personalizzate (diverse da quella predefinita ereditata dalla cartella di lavoro).
styleOttiene lo stile di questa colonna.
is_collapsedse la colonna è compressa

Metodi

MetodoDescrizione
apply_styleApplica i formati per un’intera colonna.
get_styleOttiene lo stile di questa colonna.
set_styleImposta lo stile di questa colonna.

Esempio

from aspose.cells import BackgroundType, StyleFlag, Workbook
from aspose.pydrawing import Color

# Instantiating a Workbook object
workbook = Workbook()
# Obtaining the reference of the first worksheet
worksheet = workbook.worksheets[0]
style = workbook.create_style()
# Setting the background color to Blue
style.background_color = Color.blue
# Setting the foreground color to Red
style.foreground_color = Color.red
# setting Background Pattern
style.pattern = BackgroundType.DIAGONAL_STRIPE
# New Style Flag
styleFlag = StyleFlag()
# Set All Styles
styleFlag.all = True
# Get first Column
column = worksheet.cells.columns[0]
# Apply Style to first Column
column.apply_style(style, styleFlag)
# Saving the Excel file
workbook.save("book1.xls")

Guarda anche