Update zcl_excel_comment.clas.abap

This commit is contained in:
RixarSAP 2024-05-02 11:51:34 +02:00 committed by GitHub
parent 59a7b6f42a
commit f1f1eda971
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -40,8 +40,8 @@ CLASS zcl_excel_comment DEFINITION
DATA index TYPE string . DATA index TYPE string .
DATA ref TYPE string . DATA ref TYPE string .
DATA text TYPE string . DATA text TYPE string .
DATA width TYPE i . DATA width TYPE i .
data HEIGHT type I . DATA height TYPE I .
ENDCLASS. ENDCLASS.
@ -94,7 +94,7 @@ METHOD set_size.
ENDMETHOD. ENDMETHOD.
method GET_SIZE. METHOD GET_SIZE.
IF width IS NOT INITIAL. IF width IS NOT INITIAL.
ep_width = width. ep_width = width.
@ -108,6 +108,6 @@ method GET_SIZE.
ep_height = default_height. "Default height ep_height = default_height. "Default height
ENDIF. ENDIF.
endmethod. ENDMETHOD.
ENDCLASS. ENDCLASS.