Skip to content

Latest commit

 

History

History
37 lines (28 loc) · 1.71 KB

CommonReportcellstyle.md

File metadata and controls

37 lines (28 loc) · 1.71 KB

CommonReportcellstyle

Styles applied to a Reportcell

Properties

Name Type Description Notes
b_reportcellstyle_bordertop bool Whether there is a border at the top of the Reportcell
b_reportcellstyle_borderbottom bool Whether there is a border at the bottom of the Reportcell
b_reportcellstyle_borderleft bool Whether there is a border at the left of the Reportcell
b_reportcellstyle_borderright bool Whether there is a border at the right of the Reportcell
e_reportcell_horizontalalignment EnumHorizontalalignment
e_reportcell_verticalalignment EnumVerticalalignment
e_reportcell_fontweight EnumFontweight
e_reportcell_fontunderline EnumFontunderline

Example

from eZmaxApi.models.common_reportcellstyle import CommonReportcellstyle

# TODO update the JSON string below
json = "{}"
# create an instance of CommonReportcellstyle from a JSON string
common_reportcellstyle_instance = CommonReportcellstyle.from_json(json)
# print the JSON string representation of the object
print(CommonReportcellstyle.to_json())

# convert the object into a dict
common_reportcellstyle_dict = common_reportcellstyle_instance.to_dict()
# create an instance of CommonReportcellstyle from a dict
common_reportcellstyle_form_dict = common_reportcellstyle.from_dict(common_reportcellstyle_dict)

[Back to Model list] [Back to API list] [Back to README]