Hi
I will set the Titele of the Image on Leftside. I use the folowing code to do that.
pdfImage.ImageInfo.Title = baseReport.CurrentSectionTitel;
TextInfo imageText = currentDoc.TextInfo.Clone() as TextInfo;
imageText.Alignment = AlignmentType.Left;
imageText.FontSize = 6;
imageText.IsTrueTypeFontItalic = true;
pdfImage.ImageInfo.TextInfo = imageText;
This will not work. The Title ist alway in Center of the Image.
Regards Markus