/*12 Worksheet setTable*/ create or replace function test_12_WS_setTable return clob is l_ws pls_integer; begin plxls_xml.init; -- Initialize instance l_ws := plxls_xml.addWorksheet(p_Name => 'FirstWS'); -- add worksheet plxls_xml.WS_setTable( p_ws => l_ws, p_DefaultColumnWidth => 100, p_DefaultRowHeight => 20 ); plxls_xml.addRow; -- add a row to the current Worksheet plxls_xml.addCell_String_1('Hello World!'); -- add a cell to the current row return plxls_xml.getdoc; end; /