How do you add symbols, specifically "registered" and "copyright" to the pdf export? Id displays in Visual Studio when creating the text, but it doesn't display after the PDF is generated.
Thanks!
1 Answer, 1 is accepted
0
Peshito
Telerik team
answered on 15 Aug 2019, 10:43 AM
Hi Jason,
I tried reproducing the issue but to no avail. Please find a sample code I used below:
RadFixedDocument document = new RadFixedDocument();
RadFixedDocumentEditor editor = new RadFixedDocumentEditor(document); editor.InsertBlock(symbolsBlock);
PdfFormatProvider provider = new PdfFormatProvider();
using (Stream output = File.Create("Symbols.pdf"))
{
provider.Export(document, output);
}
Could you update the code so the issue becomes reproducible or share your runnable sample?
Regards,
Peshito
Progress Telerik
Get quickly onboarded and successful with your Telerik and/or Kendo UI products with the Virtual Classroom free technical training, available to all active customers.Learn More.