Difference between revisions of "AODL example 6"

From Apache OpenOffice Wiki
Jump to: navigation, search
m
 
Line 1: Line 1:
 
<b>Create a table and use cell merging</b>
 
<b>Create a table and use cell merging</b>
  
<pre>
+
<syntaxhighlight lang="c">
 
//Create a new text document
 
//Create a new text document
 
TextDocument document = new TextDocument();
 
TextDocument document = new TextDocument();
Line 32: Line 32:
 
//Save the document
 
//Save the document
 
document.SaveTo("simpleTableWithMergedCells.odt");
 
document.SaveTo("simpleTableWithMergedCells.odt");
</pre>
+
</syntaxhighlight>
 
Back to the [[AODL_examples|AODL examples]] overview.
 
Back to the [[AODL_examples|AODL examples]] overview.
 
[[category:Summer of Code 2007]][[category:AODL]]
 
[[category:Summer of Code 2007]][[category:AODL]]

Latest revision as of 12:37, 22 May 2022

Create a table and use cell merging

//Create a new text document
TextDocument document = new TextDocument();
document.New();
//Create a table for a text document using the TableBuilder
Table table = TableBuilder.CreateTextDocumentTable(
    document,
    "table1",
    "table1",
    3,
    3,
    16.99,
    false,
    false);
 
//Fill the cells
foreach(Row row in table.RowCollection) {
    foreach(Cell cell in row.CellCollection) {
        //Create a standard paragraph
        Paragraph paragraph  = ParagraphBuilder.CreateStandardTextParagraph(document);
        //Add some simple text
        paragraph.TextContent.Add(new SimpleText(document, "Cell text"));
        cell.Content.Add(paragraph);
    }
}
//Merge some cells. Notice this is only available in text documents!
table.RowCollection[1].MergeCells(document, 1, 2, true);
//Add table to the document
document.Content.Add(table);
//Save the document
document.SaveTo("simpleTableWithMergedCells.odt");

Back to the AODL examples overview.

Personal tools