.net - How to print content of RichTextBox with multiple font type using C# -


i want print richtextbox content contains multiple font type in c#

in wpf app can this

        var printdlg = new printdialog();         if (printdlg.showdialog() == true)         {             documentpaginator paginator = ((idocumentpaginatorsource)myrichtextbox.document).documentpaginator;             printdlg.printdocument(paginator, "printing");         } 

Comments

Popular posts from this blog

php - how to give proper permission for pcntl_exec? -

javascript - Feed FileReader from server side files -

c++ - What's the differece between of link to a dynamic file and as a input object? -