public ZPLGraphicSymbol(GraphicSymbolCharacter character, int positionX, int positionY, int width, int height, string orientation = "N") : base(positionX, positionY)
 {
     Character   = character;
     Orientation = orientation;
     Width       = width;
     Height      = height;
 }
Example #2
0
 public ZplGraphicSymbol(
     GraphicSymbolCharacter character,
     int positionX,
     int positionY,
     int width,
     int height,
     FieldOrientation fieldOrientation = FieldOrientation.Normal)
     : base(positionX, positionY)
 {
     Character        = character;
     FieldOrientation = fieldOrientation;
     Width            = width;
     Height           = height;
 }