We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b925d7d commit e239570Copy full SHA for e239570
src/cl_gui_textedit.clas.abap
@@ -29,10 +29,18 @@ CLASS cl_gui_textedit DEFINITION INHERITING FROM cl_gui_control PUBLIC.
29
30
METHODS delete_text.
31
32
+ METHODS set_text_as_stream
33
+ IMPORTING
34
+ text TYPE STANDARD TABLE OPTIONAL.
35
+
36
ENDCLASS.
37
38
CLASS cl_gui_textedit IMPLEMENTATION.
39
40
+ METHOD set_text_as_stream.
41
+ RETURN. " todo, implement method
42
+ ENDMETHOD.
43
44
METHOD delete_text.
45
RETURN. " todo, implement method
46
ENDMETHOD.
0 commit comments