Merge branch 'abap2xlsx:main' into fix-bind_no_filter

This commit is contained in:
Abo 2022-05-21 11:16:45 +02:00 committed by GitHub
commit fb8f57b504
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 32 additions and 32 deletions

View File

@ -282,7 +282,7 @@ CLASS zcl_excel_reader_2007 DEFINITION
VALUE(rv_style_guid) TYPE zexcel_cell_style . VALUE(rv_style_guid) TYPE zexcel_cell_style .
METHODS load_theme METHODS load_theme
IMPORTING IMPORTING
VALUE(iv_path) TYPE string iv_path TYPE string
!ip_excel TYPE REF TO zcl_excel !ip_excel TYPE REF TO zcl_excel
RAISING RAISING
zcx_excel . zcx_excel .

View File

@ -30,12 +30,12 @@ CLASS zcl_excel_theme DEFINITION
VALUE(iv_syscolorlast) TYPE zcl_excel_theme_color_scheme=>t_srgb OPTIONAL . VALUE(iv_syscolorlast) TYPE zcl_excel_theme_color_scheme=>t_srgb OPTIONAL .
METHODS set_color_scheme_name METHODS set_color_scheme_name
IMPORTING IMPORTING
VALUE(iv_name) TYPE string . iv_name TYPE string .
METHODS set_font METHODS set_font
IMPORTING IMPORTING
VALUE(iv_type) TYPE string iv_type TYPE string
VALUE(iv_script) TYPE string iv_script TYPE string
VALUE(iv_typeface) TYPE string . iv_typeface TYPE string .
METHODS set_latin_font METHODS set_latin_font
IMPORTING IMPORTING
VALUE(iv_type) TYPE string VALUE(iv_type) TYPE string

View File

@ -44,10 +44,10 @@ CLASS zcl_excel_theme_color_scheme DEFINITION
!io_color_scheme TYPE REF TO if_ixml_element . !io_color_scheme TYPE REF TO if_ixml_element .
METHODS set_color METHODS set_color
IMPORTING IMPORTING
VALUE(iv_type) TYPE string iv_type TYPE string
VALUE(iv_srgb) TYPE t_srgb OPTIONAL iv_srgb TYPE t_srgb OPTIONAL
VALUE(iv_syscolorname) TYPE string OPTIONAL iv_syscolorname TYPE string OPTIONAL
VALUE(iv_syscolorlast) TYPE t_srgb . iv_syscolorlast TYPE t_srgb .
METHODS build_xml METHODS build_xml
IMPORTING IMPORTING
!io_document TYPE REF TO if_ixml_document . !io_document TYPE REF TO if_ixml_document .

View File

@ -52,7 +52,7 @@ CLASS zcl_excel_theme_font_scheme DEFINITION
!io_font_scheme TYPE REF TO if_ixml_element . !io_font_scheme TYPE REF TO if_ixml_element .
METHODS set_name METHODS set_name
IMPORTING IMPORTING
VALUE(iv_name) TYPE string . iv_name TYPE string .
METHODS build_xml METHODS build_xml
IMPORTING IMPORTING
!io_document TYPE REF TO if_ixml_document . !io_document TYPE REF TO if_ixml_document .