Entering content frameSyntax documentation cell_format Locate the document in its SAP Library structure

You use this method to set the formatting of a cell or group of cells. It is similar to the set_ranges_format method, but does not require you to specify a named range in the worksheet. Instead, you specify the cell coordinates of the top left-hand cell, and the number of rows and columns over which the range should extend. If necessary, you can retrieve this information using the method get_selected_areas.

CALL METHOD spreadsheet->cell_format
       EXPORTING cells     = cells
                 no_flush  = no_flush
       IMPORTING error     = error
                 retcode   = retcode.

Description of parameters

Parameter

Optional

Description

cells

 

An internal table with the type SOI_CELL_TABLE . For further information, refer to the Important Table Structures section.

 

 

Leaving content frame