📄 mainunit.pas
字号:
{*******************************************************}
{ }
{ This unit is part of the VISPDF VCL library. }
{ Written by R.Husske - ALL RIGHTS RESERVED. }
{ }
{ Copyright (C) 2000-2008, www.vispdf.com }
{ }
{ e-mail: support@vispdf.com }
{ http://www.vispdf.com }
{ }
{*******************************************************}
unit MainUnit;
interface
uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
VPDFDoc, StdCtrls;
type
TForm1 = class(TForm)
VPDF: TVPDF;
Button1: TButton;
procedure Button1Click(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;
var
Form1: TForm1;
implementation
{$R *.DFM}
procedure TForm1.Button1Click(Sender: TObject);
begin
VPDF.BeginDoc; // Create PDF file
VPDF.CurrentPage.SetFont('Arial Unicode MS', [], 12, 0, False); //Set horizontal text
VPDF.CurrentPage.UnicodeTextOut( 10, 10, 0, 'Horizontal Text'); //Print horizontal text
VPDF.CurrentPage.SetFont('Arial Unicode MS', [], 12, 0, True); //Set vertical text
VPDF.CurrentPage.UnicodeTextOut( 10, 40, 0, 'Vertical Text'); //Print vertical text
VPDF.EndDoc; // Close PDF file
end;
end.
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -