diff --git a/ZA2X/CLAS/ZCL_EXCEL_WORKSHEET_COLUMNDIME.slnk b/ZA2X/CLAS/ZCL_EXCEL_WORKSHEET_COLUMNDIME.slnk index 1a13c78..67abf9d 100644 --- a/ZA2X/CLAS/ZCL_EXCEL_WORKSHEET_COLUMNDIME.slnk +++ b/ZA2X/CLAS/ZCL_EXCEL_WORKSHEET_COLUMNDIME.slnk @@ -1,5 +1,5 @@ - + class ZCL_EXCEL_WORKSHEET_COLUMNDIME definition public final @@ -92,43 +92,16 @@ private section. *"* in the implementation part of the class ABAP - - - - - - - - - + + + + + + + + + method CONSTRUCTOR. -********************************************************************** -* abap2xlsx -* -* Copyright (c) 2010 Gregor Wolf -* -* This library is free software; you can redistribute it and/or -* modify it under the terms of the GNU Lesser General Public -* License as published by the Free Software Foundation; either -* version 2.1 of the License, or (at your option) any later version. -* -* This library is distributed in the hope that it will be useful, -* but WITHOUT ANY WARRANTY; without even the implied warranty of -* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -* Lesser General Public License for more details. -* -* You should have received a copy of the GNU Lesser General Public -* License along with this library; if not, write to the Free Software -* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA -* -* @category ABAP xlsx Creator -* @package ZA2E -* @author Gregor Wolf -* @homepage http://www.computerservice-wolf.com/ -* @copyright Copyright (c) 2010 Gregor Wolf -* @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL -* @version 1.5, 2010-08-11 -********************************************************************** me->column_index = zcl_excel_common=>convert_column2int( ip_index ). me->width = -1. me->auto_size = abap_false. @@ -140,97 +113,97 @@ private section. me->xf_index = 0. endmethod. - - + + method GET_AUTO_SIZE. r_auto_size = me->auto_size. endmethod. - - + + method GET_COLLAPSED. r_Collapsed = me->Collapsed. endmethod. - - + + method GET_COLUMN_INDEX. r_column_index = me->column_index. endmethod. - - + + method GET_OUTLINE_LEVEL. r_outline_level = me->outline_level. endmethod. - - + + method GET_VISIBLE. r_Visible = me->Visible. endmethod. - - + + method GET_WIDTH. r_WIDTH = me->WIDTH. endmethod. - - + + method GET_XF_INDEX. r_xf_index = me->xf_index. endmethod. - - - + + + method SET_AUTO_SIZE. me->auto_size = ip_auto_size. r_worksheet_columndime = me. endmethod. - - - + + + method SET_COLLAPSED. me->Collapsed = ip_Collapsed. r_worksheet_columndime = me. endmethod. - - - + + + method SET_COLUMN_INDEX. me->column_index = zcl_excel_common=>convert_column2int( ip_index ). r_worksheet_columndime = me. endmethod. - - + + method SET_OUTLINE_LEVEL. me->outline_level = ip_outline_level. endmethod. - - - + + + method SET_VISIBLE. me->Visible = ip_Visible. r_worksheet_columndime = me. endmethod. - - - + + + method SET_WIDTH. me->width = ip_width. r_worksheet_columndime = me. endmethod. - - - + + + method SET_XF_INDEX. me->XF_INDEX = ip_XF_INDEX. r_worksheet_columndime = me.