Ejemplo n.º 1
0
        public Barcode(string data, bool showLabel, int width, int height, LabelPosition labelPosition, AlignmentPosition alignmentPosition)
        {
            _autoSize          = false;
            _data              = data;
            _showLabel         = showLabel;
            _width             = width;
            _height            = height;
            _labelPosition     = labelPosition;
            _alignmentPosition = alignmentPosition;

            InitializeType();
        }
Ejemplo n.º 2
0
        public Barcode(string data, bool showLabel, int width, int height, LabelPosition labelPosition, AlignmentPosition alignmentPosition, Color backgroundColor, Color foregroundColor)
        {
            _autoSize          = false;
            _data              = data;
            _showLabel         = showLabel;
            _width             = width;
            _height            = height;
            _labelPosition     = labelPosition;
            _alignmentPosition = alignmentPosition;
            _backgroundColor   = backgroundColor;
            _foregroundColor   = foregroundColor;

            InitializeType();
        }