barcodelib
barcodelib copied to clipboard
Barcode type: IATA 2 of 5
Suggestion, add the IATA 2 o 5 barcode. It should be really simple since the only difference is the start and stop patterns.
This is my implementation so far:
`using Robbar.Renderers;
namespace Robbar { public class IATA2of5 : Standard2of5 { public static new string SymbologyName { get; } = "IATA 2 of 5"; public static new string[] SymbologyAliasNames { get; } = { "Computer Identics 2 of 5", "Airline 2 of 5" };
public IATA2of5()
{
StartCodeWord = new CodeWord() { Pattern = "bsb", Text = "" };
StopCodeWord = new CodeWord() { Pattern = "Bsb", Text = "" };
}
}
}`