Column sınıfı
Column sınıfı
Çalışma sayfasındaki tek bir sütunu temsil eder.
Column türü aşağıdaki üyeleri ortaya çıkarır:
Özellikler
| Mülk | Tanım |
|---|---|
| index | Bu sütunun indeksini alır. |
| width | Sütun genişliğini karakter biriminde alır ve ayarlar. |
| group_level | Sütunun grup düzeyini alır. |
| is_hidden | Sütunun gizli olup olmadığını belirtir. |
| has_custom_style | Bu sütunun özel stil ayarlarına (çalışma kitabından devralınan varsayılan ayarlardan farklı) sahip olup olmadığını gösterir. |
| style | Bu sütunun stilini alır. |
| is_collapsed | sütunun çöküp çökmediği |
Yöntemler
| Yöntem | Tanım |
|---|---|
apply_style(self, style, flag) | Tüm sütun için biçimleri uygular. |
get_style(self) | Bu sütunun stilini alır. |
set_style(self, style) | Bu sütunun stilini ayarlar. |
Örnek
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")
Ayrıca bakınız
- modül
aspose.cells