Thanks for the help so far, this is going very well.
Now I want to put this into a table - can it be done?
Here's a section of code which inserts a table (it works, so i've only included the last few lines)
followed by the code which does the "Graphics plus Text" (which also works):
Dim row2 As Row = tab1.Rows.Add()
row2.Cells.Add("Logo")
row2.Cells.Add("Chart one")
'======== End Table ===========================================
' Create Logo + comments
Dim textL1 As Text = New Text()
textL1.TextInfo.FontName = "Arial"
textL1.TextInfo.FontSize = 8
sec1.Paragraphs.Add(textL1)
textL1.Segments.Add(" ")
Dim seg1 As Segment = textL1.Segments.Add()
Dim imgL1 As Aspose.Pdf.Image = New Aspose.Pdf.Image()
imgL1.ImageInfo.File = GetServerPath() & "firsteclipse\Graphics\Logo.bmp"
seg1.InlineParagraph = imgL1
textL1.Segments.Add("Self")
' == end 1 ===
i.e. Can I put textL1 into the first column of my inserted table?
Any clues?
(of course my very last step is to put the Chart into the second column, but I'm sure the same advice will apply)
Cheers
Alan