abap2xlsx/src/zcl_excel_drawings.clas.abap
Stefan Rutzmoser 1c276c6027
Fix package errors (#708)
* Fix package check errors

* Bump version number to 7.2.0
2020-11-10 18:21:38 +01:00

124 lines
2.3 KiB
ABAP

class ZCL_EXCEL_DRAWINGS definition
public
final
create public .
public section.
*"* public components of class ZCL_EXCEL_DRAWINGS
*"* do not include other source files here!!!
data TYPE type ZEXCEL_DRAWING_TYPE read-only value 'IMAGE'. "#EC NOTEXT . . . . . . . . . . " .
methods ADD
importing
!IP_DRAWING type ref to ZCL_EXCEL_DRAWING .
methods INCLUDE
importing
!IP_DRAWING type ref to ZCL_EXCEL_DRAWING .
methods CLEAR .
methods CONSTRUCTOR
importing
!IP_TYPE type ZEXCEL_DRAWING_TYPE .
methods GET
importing
!IP_INDEX type ZEXCEL_ACTIVE_WORKSHEET
returning
value(EO_DRAWING) type ref to ZCL_EXCEL_DRAWING .
methods GET_ITERATOR
returning
value(EO_ITERATOR) type ref to CL_OBJECT_COLLECTION_ITERATOR .
methods IS_EMPTY
returning
value(IS_EMPTY) type FLAG .
methods REMOVE
importing
!IP_DRAWING type ref to ZCL_EXCEL_DRAWING .
methods SIZE
returning
value(EP_SIZE) type I .
methods GET_TYPE
returning
value(RP_TYPE) type ZEXCEL_DRAWING_TYPE .
*"* protected components of class ZCL_EXCEL_DRAWINGS
*"* do not include other source files here!!!
*"* protected components of class ZCL_EXCEL_DRAWINGS
*"* do not include other source files here!!!
protected section.
private section.
*"* private components of class ZCL_EXCEL_DRAWINGS
*"* do not include other source files here!!!
data DRAWINGS type ref to CL_OBJECT_COLLECTION .
ENDCLASS.
CLASS ZCL_EXCEL_DRAWINGS IMPLEMENTATION.
method ADD.
DATA: lv_index TYPE i.
drawings->add( ip_drawing ).
lv_index = drawings->size( ).
ip_drawing->create_media_name(
ip_index = lv_index ).
endmethod.
method CLEAR.
drawings->clear( ).
endmethod.
method CONSTRUCTOR.
CREATE OBJECT drawings.
type = ip_type.
endmethod.
method GET.
DATA lv_index TYPE i.
lv_index = ip_index.
eo_drawing ?= drawings->get( lv_index ).
endmethod.
method GET_ITERATOR.
eo_iterator ?= drawings->get_iterator( ).
endmethod.
method GET_TYPE.
rp_type = me->type.
endmethod.
method INCLUDE.
drawings->add( ip_drawing ).
endmethod.
method IS_EMPTY.
is_empty = drawings->is_empty( ).
endmethod.
method REMOVE.
drawings->remove( ip_drawing ).
endmethod.
method SIZE.
ep_size = drawings->size( ).
endmethod.
ENDCLASS.