Initializes a new instance of the BarcodeItem class with the specified location, barcode symbology and value to encode.

Namespace: Neodynamic.SDK.Printing
Assembly: Neodynamic.SDK.ThermalLabel (in Neodynamic.SDK.ThermalLabel.dll) Version: 5.0.3500.0 (5.0.3500.4)

Syntax

C#
public BarcodeItem(
	double x,
	double y,
	double width,
	double height,
	BarcodeSymbology symbology,
	string code
)
Visual Basic
Public Sub New ( _
	x As Double, _
	y As Double, _
	width As Double, _
	height As Double, _
	symbology As BarcodeSymbology, _
	code As String _
)
Visual C++
public:
BarcodeItem(
	double x, 
	double y, 
	double width, 
	double height, 
	BarcodeSymbology symbology, 
	String^ code
)

Parameters

x
Type: System..::..Double
The x-coordinate of the upper-left corner of the item relative to the upper-left corner of its container.
y
Type: System..::..Double
The y-coordinate of the upper-left corner of the item relative to the upper-left corner of its container.
width
Type: System..::..Double
The width of the item container.
height
Type: System..::..Double
The height of the item container.
symbology
Type: Neodynamic.SDK.Printing..::..BarcodeSymbology
The barcode symbology/standard to be generated.
code
Type: System..::..String
The value to encode.

See Also