class documentation

class FillObject:

Constructor: FillObject()

View In Hierarchy

塗りつぶしを取り扱うクラスです。

Method __init__ コンストラクタ。インスタンスを作成します。
Method getFillType 塗りつぶし種類を取得します。
Method getLinearGradient 線形グラデーションフィルオブジェクトを取得します。
Method getPatternFill パターンフィルオブジェクトを取得します。
Method getRectangleGradient パスグラディエントオブジェクトを取得します。
Method setCellColorObject セルの背景の色オブジェクトの設定を行います。
Method setLinearGradient 線形グラデーションフィルオブジェクトを適用します。
Method setPatternFill パターンフィルオブジェクトを適用します。
Method setRectangleGradient パスグラディエントフィルオブジェクトを適用します。
def __init__(self):

コンストラクタ。インスタンスを作成します。

def getFillType(self) -> enums.XlFillObjectType:

塗りつぶし種類を取得します。

Returns
XlFillObjectType塗りつぶし種類
def getLinearGradient(self) -> LinearGradientObject:

線形グラデーションフィルオブジェクトを取得します。

Returns
LinearGradientObject線形グラデーションフィルオブジェクト
def getPatternFill(self) -> PatternFillObject:

パターンフィルオブジェクトを取得します。

Returns
PatternFillObjectパターンフィルオブジェクト
def getRectangleGradient(self) -> RectangleGradientObject:

パスグラディエントオブジェクトを取得します。

Returns
RectangleGradientObjectパスグラディエントオブジェクト
def setCellColorObject(self, colorObject: ColorObject):

セルの背景の色オブジェクトの設定を行います。

パターンフィルオブジェクトを設定し、パターンタイプをソリッドフィルに設定し、色オブジェクトを設定するのと同じです。

Parameters
colorObject:ColorObject色オブジェクト
def setLinearGradient(self, linearFill: LinearGradientObject):

線形グラデーションフィルオブジェクトを適用します。

Parameters
linearFill:LinearGradientObject線形グラデーションフィルオブジェクト
def setPatternFill(self, patternFill: PatternFillObject):

パターンフィルオブジェクトを適用します。

Parameters
patternFill:PatternFillObjectパターンフィルオブジェクト
def setRectangleGradient(self, rectangleFill: RectangleGradientObject):

パスグラディエントフィルオブジェクトを適用します。

Parameters
rectangleFill:RectangleGradientObjectパスグラディエントフィルオブジェクト