class documentation

class FooterObject:

Constructor: FooterObject()

View In Hierarchy

ページの印刷時のフッターを扱うオブジェクトです。

Method __init__ コンストラクタ。インスタンスを作成します。
Method getCenterFooter 中央フッター文字列を取得します。
Method getLeftFooter 左フッター文字列を取得します。
Method getRightFooter 右フッター文字列を取得します。
Method setCenterFooter 中央フッター文字列を設定します。
Method setLeftFooter 左フッター文字列を設定します。
Method setRightFooter 右フッター文字列を設定します。
def __init__(self):

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

def getCenterFooter(self) -> str:

中央フッター文字列を取得します。

Returns
str中央フッター文字列
def getLeftFooter(self) -> str:

左フッター文字列を取得します。

Returns
str左フッター文字列
def getRightFooter(self) -> str:

右フッター文字列を取得します。

Returns
str右フッター文字列
def setCenterFooter(self, footer: str):

中央フッター文字列を設定します。

Parameters
footer:str中央フッター文字列
def setLeftFooter(self, footer: str):

左フッター文字列を設定します。

Parameters
footer:str左フッター文字列
def setRightFooter(self, footer: str):

右フッター文字列を設定します。

Parameters
footer:str右フッター文字列