mirror of
https://github.com/abap2xlsx/abap2xlsx.git
synced 2025-05-05 16:46:11 +08:00
23 lines
558 B
ABAP
23 lines
558 B
ABAP
class ZCL_EXCEL_CUSTOMUI_BUTTON definition
|
|
public
|
|
final
|
|
create public .
|
|
|
|
public section.
|
|
|
|
*"* public components of class ZCL_EXCEL_CUSTOMUI_BUTTON
|
|
*"* do not include other source files here!!!
|
|
interfaces ZIF_EXCEL_CUSTOMUI_ELEMENT .
|
|
protected section.
|
|
*"* protected components of class ZCL_EXCEL_CUSTOMUI_BUTTON
|
|
*"* do not include other source files here!!!
|
|
private section.
|
|
*"* private components of class ZCL_EXCEL_CUSTOMUI_BUTTON
|
|
*"* do not include other source files here!!!
|
|
ENDCLASS.
|
|
|
|
|
|
|
|
CLASS ZCL_EXCEL_CUSTOMUI_BUTTON IMPLEMENTATION.
|
|
ENDCLASS.
|