
#####
Excel
#####


****
NAME
****


Kernel::System::DBCRUD::Format::Excel - DBCRUD Excel lib


********
SYNOPSIS
********


All DBCRUD format Excel functions.


****************
PUBLIC INTERFACE
****************


new()
=====


create an object


.. code-block:: perl

     my DBCRUDExcelObject = $Kernel::OM->Get('Kernel::System::DBCRUD::Format::Excel');



GetContent()
============


return content of Excel String as array-ref.


.. code-block:: perl

     my $Array = $DBCRUDExcelObject->GetContent(
         Content => $ContentString,
     );


Returns:


.. code-block:: perl

     my $Array = [];



SetContent()
============


return content of array as excel string.


.. code-block:: perl

     my $ExportString = $DBCRUDExcelObject->SetContent(
         Content => $Array,
     );


Returns:


.. code-block:: perl

     my $ExportString = '---';



_EncodeExcelValue()
===================


This function will encode the value and move it too ascii.


.. code-block:: perl

     $DBCRUDExcelObject->_EncodeExcelValue(\$Value);


Returns:


.. code-block:: perl

     my $Value = 1;




