mirror of
https://github.com/abap2UI5/abap2UI5.git
synced 2025-04-30 07:31:54 +08:00
Add "enableformattedtext" to message_strip method. (#1451)
* Add "enableformattedtext" to message_strip method. * Add "enableformattedtext" to message_strip method2 * Add "enableformattedtext" to message_strip method3 * Add "enableformattedtext" to message_strip method4
This commit is contained in:
parent
3a4192d3e0
commit
3e5f73d555
|
@ -187,15 +187,16 @@ CLASS z2ui5_cl_xml_view DEFINITION
|
||||||
RETURNING VALUE(result) TYPE REF TO z2ui5_cl_xml_view.
|
RETURNING VALUE(result) TYPE REF TO z2ui5_cl_xml_view.
|
||||||
|
|
||||||
METHODS message_strip
|
METHODS message_strip
|
||||||
IMPORTING !text TYPE clike OPTIONAL
|
IMPORTING !text TYPE clike OPTIONAL
|
||||||
!type TYPE clike OPTIONAL
|
!type TYPE clike OPTIONAL
|
||||||
!showicon TYPE clike OPTIONAL
|
!showicon TYPE clike OPTIONAL
|
||||||
!customicon TYPE clike OPTIONAL
|
!customicon TYPE clike OPTIONAL
|
||||||
!class TYPE clike OPTIONAL
|
!class TYPE clike OPTIONAL
|
||||||
!visible TYPE clike OPTIONAL
|
!visible TYPE clike OPTIONAL
|
||||||
!showclosebutton TYPE clike OPTIONAL
|
!showclosebutton TYPE clike OPTIONAL
|
||||||
|
enableformattedtext TYPE clike OPTIONAL
|
||||||
PREFERRED PARAMETER text
|
PREFERRED PARAMETER text
|
||||||
RETURNING VALUE(result) TYPE REF TO z2ui5_cl_xml_view.
|
RETURNING VALUE(result) TYPE REF TO z2ui5_cl_xml_view.
|
||||||
|
|
||||||
METHODS footer
|
METHODS footer
|
||||||
IMPORTING !ns TYPE string OPTIONAL
|
IMPORTING !ns TYPE string OPTIONAL
|
||||||
|
@ -6880,7 +6881,8 @@ CLASS z2ui5_cl_xml_view IMPLEMENTATION.
|
||||||
( n = `customIcon` v = customicon )
|
( n = `customIcon` v = customicon )
|
||||||
( n = `visible` v = z2ui5_cl_util=>boolean_abap_2_json( visible ) )
|
( n = `visible` v = z2ui5_cl_util=>boolean_abap_2_json( visible ) )
|
||||||
( n = `showCloseButton` v = z2ui5_cl_util=>boolean_abap_2_json( showclosebutton ) )
|
( n = `showCloseButton` v = z2ui5_cl_util=>boolean_abap_2_json( showclosebutton ) )
|
||||||
( n = `class` v = class ) ) ).
|
( n = `class` v = class )
|
||||||
|
( n = `enableFormattedText` v = z2ui5_cl_util=>boolean_abap_2_json( enableformattedtext ) ) ) ).
|
||||||
ENDMETHOD.
|
ENDMETHOD.
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user