Difference between revisions of "AODL example 5"

From Apache OpenOffice Wiki
Jump to: navigation, search
 
m
Line 5: Line 5:
 
textdocument.New();
 
textdocument.New();
 
Paragraph p = ParagraphBuilder.CreateStandardTextParagraph(textdocument);
 
Paragraph p = ParagraphBuilder.CreateStandardTextParagraph(textdocument);
Frame frame= new Frame(textdocument, "frame1", "graphic1", @"F:\img.jpg");
+
Frame frame = new Frame(textdocument, "frame1", "graphic1", @"F:\img.jpg");
 
p.Content.Add(frame);
 
p.Content.Add(frame);
 
textdocument.Content.Add(p);
 
textdocument.Content.Add(p);

Revision as of 13:43, 15 March 2007

Add graphics to your document

TextDocument textdocument = new TextDocument();
textdocument.New();
Paragraph p = ParagraphBuilder.CreateStandardTextParagraph(textdocument);
Frame frame = new Frame(textdocument, "frame1", "graphic1", @"F:\img.jpg");
p.Content.Add(frame);
textdocument.Content.Add(p);
textdocument.SaveTo("grapic.odt");

Back to the AODL examples overview.

Personal tools