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 .
METHODS load_theme
IMPORTING
VALUE(iv_path) TYPE string
iv_path TYPE string
!ip_excel TYPE REF TO zcl_excel
RAISING
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 .
METHODS set_color_scheme_name
IMPORTING
VALUE(iv_name) TYPE string .
iv_name TYPE string .
METHODS set_font
IMPORTING
VALUE(iv_type) TYPE string
VALUE(iv_script) TYPE string
VALUE(iv_typeface) TYPE string .
iv_type TYPE string
iv_script TYPE string
iv_typeface TYPE string .
METHODS set_latin_font
IMPORTING
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 .
METHODS set_color
IMPORTING
VALUE(iv_type) TYPE string
VALUE(iv_srgb) TYPE t_srgb OPTIONAL
VALUE(iv_syscolorname) TYPE string OPTIONAL
VALUE(iv_syscolorlast) TYPE t_srgb .
iv_type TYPE string
iv_srgb TYPE t_srgb OPTIONAL
iv_syscolorname TYPE string OPTIONAL
iv_syscolorlast TYPE t_srgb .
METHODS build_xml
IMPORTING
!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 .
METHODS set_name
IMPORTING
VALUE(iv_name) TYPE string .
iv_name TYPE string .
METHODS build_xml
IMPORTING
!io_document TYPE REF TO if_ixml_document .