BarcodeWriterEncodedText Property |
After a call to
Render(String, Graphics, Rectangle) gets the text that was rendered in the barcode. This may include check sum digits or start/stop codes not
contained in the text passed to render.
Namespace:
Atalasoft.Barcoding.Writing
Assembly:
Atalasoft.dotImage.Barcoding.Writing (in Atalasoft.dotImage.Barcoding.Writing.dll) Version: 11.4.0.9.0.377 (.NET 4.5.2, x86)
Syntax public string EncodedText { get; }
Public ReadOnly Property EncodedText As String
Get
Property Value
Type:
StringExamples myBarcodeWriter.Style = BarcodeStyle.Code39;
myBarcodeWriter.Render("1234", g, targetBounds);
string encodedText = myBarcodeWriter.EncodedText;
See Also