I would like to know is there a way we can set the power point dictionary proofing language to default English(U.S)? The issue we are noticing is once the power point is generated from an existing template the dictionary proofing language is defaulting to French.
Hi,
Thanks for the info.
Hi,
Hi Adnan,
Hi Praveen,
using (Presentation pres = new Presentation())
{
IAutoShape shape = pres.Slides[0].Shapes.AddAutoShape(ShapeType.Rectangle, 50, 50, 200, 50);
shape.AddTextFrame(“Text to apply spellcheck language”);
shape.TextFrame.Paragraphs[0].Portions[0].PortionFormat.LanguageId = “en-EN”;
pres.Save(pptxFileNameOut, SaveFormat.Pptx);
}
Thank you Adnan.
Hi Praveen,
The issues you have found earlier (filed as SLIDESNET-34103) have been fixed in this update.
This message was posted using Notification2Forum from Downloads module by Aspose Notifier.