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ülkTanım
indexBu sütunun indeksini alır.
widthSütun genişliğini karakter birimi cinsinden alır ve ayarlar.
group_levelSütunun grup düzeyini alır.
is_hiddenSütunun gizli olup olmadığını belirtir.
has_custom_styleBu sütunun özel stil ayarlarına (çalışma kitabından devralınan varsayılan ayardan farklı) sahip olup olmadığını belirtir.
styleBu sütunun stilini alır.
is_collapsedsütunun daraltılıp daraltılmadığı

Yöntemler

YöntemTanım
apply_styleTüm sütun için formatları uygular.
get_styleBu sütunun stilini alır.
set_styleBu 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