mirror of
https://github.com/abap2xlsx/abap2xlsx.git
synced 2025-05-05 08:16:14 +08:00
replace tabs with spaces
This commit is contained in:
parent
49f7113883
commit
59f270b682
|
@ -108,7 +108,7 @@ method CONSTRUCTOR.
|
|||
me->width = -1.
|
||||
me->auto_size = abap_false.
|
||||
me->visible = abap_true.
|
||||
me->outline_level = 0.
|
||||
me->outline_level = 0.
|
||||
me->collapsed = abap_false.
|
||||
me->excel = ip_excel. "ins issue #157 - Allow Style for columns
|
||||
me->worksheet = ip_worksheet. "ins issue #157 - Allow Style for columns
|
||||
|
|
|
@ -59,7 +59,7 @@ CLASS ZCL_EXCEL_COLUMNS IMPLEMENTATION.
|
|||
|
||||
insert LS_HASHED_COLUMN into table COLUMNS_HASEHD .
|
||||
|
||||
COLUMNS->ADD( IO_COLUMN ).
|
||||
COLUMNS->ADD( IO_COLUMN ).
|
||||
endmethod.
|
||||
|
||||
|
||||
|
|
|
@ -666,9 +666,9 @@ CLASS lcl_excel_common_test IMPLEMENTATION.
|
|||
METHOD split_file.
|
||||
* ============================
|
||||
|
||||
DATA: ep_file TYPE text255,
|
||||
DATA: ep_file TYPE text255,
|
||||
ep_extension TYPE char10,
|
||||
ep_dotextension TYPE char10.
|
||||
ep_dotextension TYPE char10.
|
||||
|
||||
|
||||
* Test 1. Basic conversion
|
||||
|
|
|
@ -1036,7 +1036,7 @@ method GET_FILE.
|
|||
|
||||
|
||||
method GET_FUNCTION_NUMBER.
|
||||
*Number Function
|
||||
*Number Function
|
||||
*1 AVERAGE
|
||||
*2 COUNT
|
||||
*3 COUNTA
|
||||
|
|
|
@ -28,9 +28,9 @@ TYPES: BEGIN OF ts_subtotal_rows,
|
|||
|
||||
TYPES: BEGIN OF ts_styles,
|
||||
type TYPE char1,
|
||||
alignment TYPE zexcel_alignment,
|
||||
inttype TYPE inttype,
|
||||
decimals TYPE int1,
|
||||
alignment TYPE zexcel_alignment,
|
||||
inttype TYPE inttype,
|
||||
decimals TYPE int1,
|
||||
style TYPE REF TO zcl_excel_style,
|
||||
guid TYPE zexcel_cell_style,
|
||||
END OF ts_styles,
|
||||
|
@ -38,10 +38,10 @@ TYPES: BEGIN OF ts_styles,
|
|||
tt_styles TYPE HASHED TABLE OF ts_styles WITH UNIQUE KEY type alignment inttype decimals.
|
||||
|
||||
TYPES: BEGIN OF ts_color_styles,
|
||||
guid_old TYPE zexcel_cell_style,
|
||||
fontcolor TYPE zexcel_style_color_argb,
|
||||
fillcolor TYPE zexcel_style_color_argb,
|
||||
style_new TYPE REF TO zcl_excel_style,
|
||||
guid_old TYPE zexcel_cell_style,
|
||||
fontcolor TYPE zexcel_style_color_argb,
|
||||
fillcolor TYPE zexcel_style_color_argb,
|
||||
style_new TYPE REF TO zcl_excel_style,
|
||||
END OF ts_color_styles,
|
||||
|
||||
tt_color_styles TYPE HASHED TABLE OF ts_color_styles WITH UNIQUE KEY guid_old fontcolor fillcolor.
|
||||
|
|
|
@ -70,8 +70,8 @@ method CONSTRUCTOR.
|
|||
operator = ''.
|
||||
allowblank = abap_false.
|
||||
showdropdown = abap_false.
|
||||
showinputmessage = abap_true.
|
||||
showerrormessage = abap_true.
|
||||
showinputmessage = abap_true.
|
||||
showerrormessage = abap_true.
|
||||
errortitle = ''.
|
||||
error = ''.
|
||||
prompttitle = ''.
|
||||
|
|
Loading…
Reference in New Issue
Block a user