Hi,
I'm evaluating the Spire Presentation and I'm looking for the possibility to insert an HTML formatted text inside a shape.
Is it possible?
Best regards,
Luca
shape.TextFrame.Paragraphs.AddFromHtml(html);
<html><body> <p>
<font color="#000000" face="Times New Roman" size="3">
</font></p><p style="margin: 0cm 0cm 0pt 18pt;"><span style='font-family: "Arial",sans-serif; font-size: 14pt; mso-bidi-font-style: italic;'><font color="#000000">Nel periodo
considerato sono state effettuate:</font></span><span style='font-family: "Arial",sans-serif; font-size: 8pt; mso-bidi-font-style: italic;'><font color="#000000"> </font></span></p><ul><li style="margin: 0cm 0cm 0pt 18pt;"><b style="mso-bidi-font-weight: normal;"><span style='color: red; font-family: "Arial",sans-serif; font-size: 14pt; mso-bidi-font-style: italic;'>n. 196 Verifiche</span></b></li></ul><p style="margin: 0cm 0cm 0pt 18pt;"><span style='font-family: "Arial",sans-serif; font-size: 14pt; mso-bidi-font-style: italic;'>così suddivise:</span><span style='font-family: "Arial",sans-serif; font-size: 10pt; mso-bidi-font-style: italic;'> </span></p><ul><li style="margin: 0cm 0cm 0pt 18pt;"><b style="mso-bidi-font-weight: normal;"><span style='color: red; font-family: "Arial",sans-serif; font-size: 14pt; mso-bidi-font-style: italic;'>n.</span></b><b style="mso-bidi-font-weight: normal;"><span style='font-family: "Arial",sans-serif; font-size: 14pt; mso-bidi-font-style: italic;'> <span style="color: red;">43
verifiche</span></span></b><span style='color: red; font-family: "Arial",sans-serif; font-size: 14pt; mso-bidi-font-style: italic;'> <b style="mso-bidi-font-weight: normal;">Snam</b></span><span style='font-family: "Arial",sans-serif; font-size: 14pt; mso-bidi-font-style: italic;'> su attività documentali in </span><span style='font-family: "Arial",sans-serif; font-size: 14pt; mso-bidi-font-style: italic;'>conformità alle norme</span></li></ul><ul><span style='font-family: "Arial",sans-serif; font-size: 14pt; mso-bidi-font-style: italic;'>UNI EN ISO <span style="mso-spacerun: yes;"> </span>9001 – Qualità <br></span><span style='font-family: "Arial",sans-serif; font-size: 14pt; mso-bidi-font-style: italic;'>UNI EN ISO 14001 – Ambiente <br></span><span style='font-family: "Arial",sans-serif; font-size: 14pt; mso-bidi-font-style: italic;'>UNI EN ISO 18001 – Sicurezza <br></span><font color="#000000"><span style='font-family: "Arial",sans-serif; font-size: 14pt; mso-bidi-font-style: italic; mso-fareast-font-family: "Times New Roman"; mso-ansi-language: IT; mso-fareast-language: IT; mso-bidi-language: AR-SA;'>UNI EN ISO 50001 – Energia</span></font> </ul></body></html>
Image image = TheArtOfDev.HtmlRenderer.WinForms.HtmlRender.RenderToImage(html, 650, 400);
System.IO.Stream imageStream = image.toStream(ImageFormat.Png);
RectangleF rect = new RectangleF(40, 80, image.Width, image.Height);
IEmbedImage embImage = slide.Shapes.AppendEmbedImage(ShapeType.Rectangle, imageStream, rect);
embImage.ShapeLocking.AspectRatioProtection = true;