paragraphdemomain.dfm

来自「一个后成PDF文件的控件」· DFM 代码 · 共 66 行

DFM
66
字号
object MainForm: TMainForm
  Left = 271
  Top = 114
  BorderStyle = bsDialog
  Caption = 'EMS QuickPDF Paragraph Demo'
  ClientHeight = 442
  ClientWidth = 427
  Color = clBtnFace
  Font.Charset = DEFAULT_CHARSET
  Font.Color = clWindowText
  Font.Height = -11
  Font.Name = 'MS Sans Serif'
  Font.Style = []
  OldCreateOrder = False
  Position = poScreenCenter
  OnCreate = FormCreate
  PixelsPerInch = 96
  TextHeight = 13
  object Panel1: TPanel
    Left = 0
    Top = 0
    Width = 427
    Height = 442
    Align = alClient
    TabOrder = 0
    object Button1: TButton
      Left = 161
      Top = 407
      Width = 105
      Height = 25
      Caption = 'Generate PDF'
      Default = True
      TabOrder = 0
      OnClick = GeneratePDF
    end
    object MainText: TMemo
      Left = 9
      Top = 8
      Width = 409
      Height = 388
      Lines.Strings = (
        'MainText')
      TabOrder = 1
    end
  end
  object QuickPdf1: TQuickPdf
    FileName = 'c:\test.pdf'
    PageInfo.Size = psA4
    PageInfo.Width = 210
    PageInfo.Height = 297
    PageInfo.MarginLeft = 5
    PageInfo.MarginRight = 5
    PageInfo.MarginTop = 5
    PageInfo.MarginBottom = 5
    Left = 8
    Top = 400
  end
  object SaveDialog1: TSaveDialog
    DefaultExt = 'pdf'
    FileName = 'QuickPDF Paragraph Demo'
    Filter = 'PDF Documents|*.pdf|All Files|*.*'
    Left = 37
    Top = 400
  end
end

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?