| property Position: double; |
| This property sets or returns the positions of the bar code that is used in relation to the state of the BarCodeJustify property. This property along with BarCodeJustify is changed whenever the Left, Right or Center properties are changed. |
| // Bar Code will be centered at the SectionLeft + 3.0 point |
| BarCodeJustify := pjCenter; |
| Position := SectionLeft + 3.0; |
| BarCodeJustify = pjCenter; |
| Position = SectionLeft + 3.0;
|
|