Click or drag to resize

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; }

Property Value

Type: String
Examples
 myBarcodeWriter.Style = BarcodeStyle.Code39;
myBarcodeWriter.Render("1234", g, targetBounds);
// should start and end with '*', the start/stop char for Code 39
string encodedText = myBarcodeWriter.EncodedText;
See Also