class ZCL_EXCEL_STYLE definition public final create public . *"* public components of class ZCL_EXCEL_STYLE *"* do not include other source files here!!! public section. data FONT type ref to ZCL_EXCEL_STYLE_FONT . data FILL type ref to ZCL_EXCEL_STYLE_FILL . data BORDERS type ref to ZCL_EXCEL_STYLE_BORDERS . data ALIGNMENT type ref to ZCL_EXCEL_STYLE_ALIGNMENT . data NUMBER_FORMAT type ref to ZCL_EXCEL_STYLE_NUMBER_FORMAT . methods CONSTRUCTOR . methods GET_GUID returning value(EP_GUID) type ZEXCEL_CELL_STYLE . *"* protected components of class ZABAP_EXCEL_STYLE *"* do not include other source files here!!! protected section. *"* private components of class ZCL_EXCEL_STYLE *"* do not include other source files here!!! private section. data PROTECTION type ref to ZCL_EXCEL_STYLE_PROTECTION . data GUID type ZEXCEL_CELL_STYLE . *"* local class implementation for public class *"* use this source file for the implementation part of *"* local helper classes *"* use this source file for any type declarations (class *"* definitions, interfaces or data types) you need for method *"* implementation or private method's signature *"* use this source file for any macro definitions you need *"* in the implementation part of the class method CONSTRUCTOR. CREATE OBJECT font. CREATE OBJECT fill. CREATE OBJECT borders. CREATE OBJECT alignment. CREATE OBJECT number_format. CREATE OBJECT protection. CALL FUNCTION 'GUID_CREATE' IMPORTING ev_guid_16 = me->guid. endmethod. method GET_GUID. ep_guid = me->guid. endmethod.