Controls the orientation of the barcode symbol.
type
{ Defined in the pfmxBarcode2D unit }
TBarcodeOrientation = (boLeftRight, boRightLeft, boTopBottom, boBottomTop);
property Orientation: TBarcodeOrientation;
Specifies the direction of the barcode symbol. The barcode symbol and its quiet zones (if they are displayed, please read the ShowQuietZone property about whether or not the quiet zones will be displayed) will be rotated based on the property value. You can use the LeadingQuietZone, TrailingQuietZone, TopQuietZone, and BottomQuietZone properties to specify the size of these quiet zones in modules.
This property can be one of these values (defined in the pfmxBarcode2D unit):
boLeftRight: Left to right horizontal direction (rotates the barcode symbol 0 degrees counter-clockwise). See diagram (the SpaceColor property value is set to claSilver in order to accentuate the quiet zones):
boRightLeft: Right to left horizontal direction (rotates the barcode symbol 180 degrees counter-clockwise). See diagram (the SpaceColor property value is set to claSilver in order to accentuate the quiet zones):
boTopBottom: Top to bottom vertical direction (rotates the barcode symbol 270 degrees counter-clockwise). See diagram (the SpaceColor property value is set to claSilver in order to accentuate the quiet zones):
boBottomTop: Bottom to top vertical direction (rotates the barcode symbol 90 degrees counter-clockwise). See diagram (the SpaceColor property value is set to claSilver in order to accentuate the quiet zones):