From 4ce31500e12f4766659971bd2a985ac89ad99fec Mon Sep 17 00:00:00 2001 From: Dess Date: Thu, 11 Jul 2024 07:54:14 +0300 Subject: [PATCH] Update add-barcode-to-pdf-telerik.md --- knowledge-base/add-barcode-to-pdf-telerik.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/knowledge-base/add-barcode-to-pdf-telerik.md b/knowledge-base/add-barcode-to-pdf-telerik.md index 226b2430..613f144b 100644 --- a/knowledge-base/add-barcode-to-pdf-telerik.md +++ b/knowledge-base/add-barcode-to-pdf-telerik.md @@ -29,7 +29,7 @@ To add a barcode to a PDF document, consider using the [WinForms BarcodeView](ht 2\. Then, add the [image to the PDF document]({%slug pdf-from-images-with-radfixeddocumenteditor%}). Here is a sample code snippet: - ```csharp + ```csharp Telerik.WinControls.UI.Barcode.QRCode qrCode1 = new Telerik.WinControls.UI.Barcode.QRCode(); RadBarcodeView radBarcodeView = new RadBarcodeView(); radBarcodeView.BindingContext = new BindingContext(); @@ -57,7 +57,7 @@ To add a barcode to a PDF document, consider using the [WinForms BarcodeView](ht provider.Export(fixedDocument, output); } Process.Start(new ProcessStartInfo() { FileName = outputFilePath, UseShellExecute = true }); - ``` + ``` ## Notes