Skip to content

IDAutomation.Codabar

jdubs edited this page Oct 23, 2016 · 1 revision

Table of Contents

Overview

The Codabar barcode option is specified in IDAutomation Barcode Fonts, Components and Applications to create a Codabar Barcode, which is a symbology that easily encodes numbers without the requirement of check characters.

Reference

http://www.idautomation.com/barcode/codabar.html

Parameters

SpecName (constant) The variable containing the input to be converted. Proper UPC font must be applied in the template.

ErrorMessage (multiple | optional) The error message to return when any error occurs.

Source Code

ublic static void Codabar(string SpecName, object ErrorMessage)
{
	Actions.Break();
	try
	{
		string code = Actions.Variable(SpecName).Value;
		Actions.Variable(SpecName).Value = CallFontEncoder("Codabar", new object[] { code });
	}
	catch (Exception ex)
	{
		throw new Actions.Four51ActionsException(ex.Message, (string)ErrorMessage);
	}
}

Clone this wiki locally