fastpyxl.worksheet.properties module

Worksheet Properties

class fastpyxl.worksheet.properties.Outline(applyStyles=None, summaryBelow=None, summaryRight=None, showOutlineSymbols=None)[source]

Bases: Serialisable

applyStyles: bool | None
showOutlineSymbols: bool | None
summaryBelow: bool | None
summaryRight: bool | None
tagname = 'outlinePr'
class fastpyxl.worksheet.properties.PageSetupProperties(autoPageBreaks=None, fitToPage=None)[source]

Bases: Serialisable

autoPageBreaks: bool | None
fitToPage: bool | None
tagname = 'pageSetUpPr'
class fastpyxl.worksheet.properties.WorksheetProperties(codeName=None, enableFormatConditionsCalculation=None, filterMode=None, published=None, syncHorizontal=None, syncRef=None, syncVertical=None, transitionEvaluation=None, transitionEntry=None, tabColor=None, outlinePr=None, pageSetUpPr=None)[source]

Bases: Serialisable

codeName: str | None
enableFormatConditionsCalculation: bool | None
filterMode: bool | None
outlinePr: Outline | None
pageSetUpPr: PageSetupProperties | None
published: bool | None
syncHorizontal: bool | None
syncRef: str | None
syncVertical: bool | None
tabColor: Color | None
tagname = 'sheetPr'
transitionEntry: bool | None
transitionEvaluation: bool | None
xml_order = ('tabColor', 'outlinePr', 'pageSetUpPr')