Skip to content

Latest commit

 

History

History
32 lines (26 loc) · 1.32 KB

CommonReportcellstyle.md

File metadata and controls

32 lines (26 loc) · 1.32 KB

EzmaxApi::CommonReportcellstyle

Properties

Name Type Description Notes
b_reportcellstyle_bordertop Boolean Whether there is a border at the top of the Reportcell
b_reportcellstyle_borderbottom Boolean Whether there is a border at the bottom of the Reportcell
b_reportcellstyle_borderleft Boolean Whether there is a border at the left of the Reportcell
b_reportcellstyle_borderright Boolean 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

require 'Ezmaxapi'

instance = EzmaxApi::CommonReportcellstyle.new(
  b_reportcellstyle_bordertop: true,
  b_reportcellstyle_borderbottom: true,
  b_reportcellstyle_borderleft: true,
  b_reportcellstyle_borderright: true,
  e_reportcell_horizontalalignment: null,
  e_reportcell_verticalalignment: null,
  e_reportcell_fontweight: null,
  e_reportcell_fontunderline: null
)