You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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 = "" };
}
}
}`
The text was updated successfully, but these errors were encountered:
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" };
}`
The text was updated successfully, but these errors were encountered: