Hi
I import a docx document with a strikerhough text in it.
When I then convert it to PDF using PdfFormatProvider export. the strikethrough effect does not appeared, in the the text is shown.
var docxProvider = new DocxFormatProvider();
outputStream.Position = 0;
var flowDocument = docxProvider.Import(outputStream);
var pdfProvider = new Telerik.Windows.Documents.Flow.FormatProviders.Pdf.PdfFormatProvider();
var pdfStream = new MemoryStream();
pdfProvider.Export(flowDocument, pdfStream);