| property FontAlign: TFontAlign; |
| Returns or sets the current font alignment. |
faTop
|
will align text at the top of the font located at FontTop
|
faBaseline
|
will align text at the baseline of the font located at FontBaseline
|
faBottom
|
will align text at the bottom of the font located at FontBottom
|
| Print('This text is aligned at the top'); |
| rp1->Print("This text is aligned at the top"); |
| rp1->FontAlign = faBaseline;
|
|