home *** CD-ROM | disk | FTP | other *** search
/ Delphi Anthology / aDELPHI.iso / Runimage / Delphi50 / Lib / teeprevi.dfm / teeprevi.txt
Text File  |  1999-08-11  |  5KB  |  258 lines

  1. object ChartPreview: TChartPreview
  2.   Left = 121
  3.   Top = 130
  4.   Width = 697
  5.   Height = 427
  6.   Caption = 'TeeChart Print Preview'
  7.   Color = clBtnFace
  8.   ParentFont = True
  9.   KeyPreview = True
  10.   OldCreateOrder = True
  11.   Position = poScreenCenter
  12.   OnCreate = FormCreate
  13.   OnDestroy = FormDestroy
  14.   OnShow = FormShow
  15.   PixelsPerInch = 96
  16.   TextHeight = 13
  17.   object Panel1: TPanel
  18.     Left = 0
  19.     Top = 0
  20.     Width = 689
  21.     Height = 38
  22.     Align = alTop
  23.     TabOrder = 0
  24.     object Label1: TLabel
  25.       Left = 3
  26.       Top = 13
  27.       Width = 52
  28.       Height = 17
  29.       Alignment = taRightJustify
  30.       AutoSize = False
  31.       Caption = 'P&rinter:'
  32.       FocusControl = Printers
  33.     end
  34.     object Printers: TComboBox
  35.       Left = 57
  36.       Top = 9
  37.       Width = 195
  38.       Height = 21
  39.       Style = csDropDownList
  40.       ItemHeight = 13
  41.       TabOrder = 0
  42.       OnChange = PrintersChange
  43.     end
  44.     object BSetupPrinter: TBitBtn
  45.       Left = 262
  46.       Top = 7
  47.       Width = 100
  48.       Height = 23
  49.       Caption = 'Printer &Setup...'
  50.       TabOrder = 1
  51.       OnClick = BSetupPrinterClick
  52.       NumGlyphs = 2
  53.     end
  54.     object BClose: TButton
  55.       Left = 451
  56.       Top = 7
  57.       Width = 69
  58.       Height = 23
  59.       Cancel = True
  60.       Caption = 'Close'
  61.       Default = True
  62.       ModalResult = 1
  63.       TabOrder = 2
  64.       OnClick = BCloseClick
  65.     end
  66.     object BPrint: TButton
  67.       Left = 371
  68.       Top = 7
  69.       Width = 69
  70.       Height = 23
  71.       Caption = '&Print'
  72.       TabOrder = 3
  73.       OnClick = BPrintClick
  74.     end
  75.   end
  76.   object Panel2: TPanel
  77.     Left = 0
  78.     Top = 38
  79.     Width = 112
  80.     Height = 362
  81.     Align = alLeft
  82.     TabOrder = 1
  83.     object Orientation: TRadioGroup
  84.       Left = 3
  85.       Top = 3
  86.       Width = 105
  87.       Height = 57
  88.       Caption = 'Paper Orientation:'
  89.       ItemIndex = 1
  90.       Items.Strings = (
  91.         'P&ortrait'
  92.         '&Landscape')
  93.       TabOrder = 0
  94.       OnClick = OrientationClick
  95.     end
  96.     object GBMargins: TGroupBox
  97.       Left = 3
  98.       Top = 67
  99.       Width = 105
  100.       Height = 95
  101.       Caption = 'Margins (%)'
  102.       TabOrder = 1
  103.       object SETopMa: TEdit
  104.         Left = 34
  105.         Top = 17
  106.         Width = 27
  107.         Height = 21
  108.         TabOrder = 0
  109.         Text = '0'
  110.         OnChange = SETopMaChange
  111.       end
  112.       object SELeftMa: TEdit
  113.         Left = 6
  114.         Top = 43
  115.         Width = 26
  116.         Height = 21
  117.         TabOrder = 1
  118.         Text = '0'
  119.         OnChange = SELeftMaChange
  120.       end
  121.       object SEBotMa: TEdit
  122.         Left = 34
  123.         Top = 68
  124.         Width = 27
  125.         Height = 21
  126.         TabOrder = 2
  127.         Text = '0'
  128.         OnChange = SEBotMaChange
  129.       end
  130.       object SERightMa: TEdit
  131.         Left = 58
  132.         Top = 43
  133.         Width = 27
  134.         Height = 21
  135.         TabOrder = 3
  136.         Text = '0'
  137.         OnChange = SERightMaChange
  138.       end
  139.       object UDLeftMa: TUpDown
  140.         Left = 32
  141.         Top = 43
  142.         Width = 15
  143.         Height = 21
  144.         Associate = SELeftMa
  145.         Min = 0
  146.         Position = 0
  147.         TabOrder = 4
  148.         Wrap = False
  149.       end
  150.       object UDTopMa: TUpDown
  151.         Left = 61
  152.         Top = 17
  153.         Width = 15
  154.         Height = 21
  155.         Associate = SETopMa
  156.         Min = 0
  157.         Position = 0
  158.         TabOrder = 5
  159.         Wrap = False
  160.       end
  161.       object UDRightMa: TUpDown
  162.         Left = 85
  163.         Top = 43
  164.         Width = 15
  165.         Height = 21
  166.         Associate = SERightMa
  167.         Min = 0
  168.         Position = 0
  169.         TabOrder = 6
  170.         Wrap = False
  171.       end
  172.       object UDBotMa: TUpDown
  173.         Left = 61
  174.         Top = 68
  175.         Width = 15
  176.         Height = 21
  177.         Associate = SEBotMa
  178.         Min = 0
  179.         Position = 0
  180.         TabOrder = 7
  181.         Wrap = False
  182.       end
  183.     end
  184.     object ShowMargins: TCheckBox
  185.       Left = 13
  186.       Top = 204
  187.       Width = 95
  188.       Height = 14
  189.       Caption = '&View Margins'
  190.       Checked = True
  191.       State = cbChecked
  192.       TabOrder = 2
  193.       OnClick = ShowMarginsClick
  194.     end
  195.     object BReset: TButton
  196.       Left = 12
  197.       Top = 171
  198.       Width = 86
  199.       Height = 25
  200.       Caption = 'Reset &Margins'
  201.       Enabled = False
  202.       TabOrder = 3
  203.       OnClick = BResetClick
  204.     end
  205.     object ChangeDetailGroup: TGroupBox
  206.       Left = 3
  207.       Top = 229
  208.       Width = 105
  209.       Height = 66
  210.       Caption = 'Detail:'
  211.       TabOrder = 4
  212.       object Label2: TLabel
  213.         Left = 8
  214.         Top = 18
  215.         Width = 36
  216.         Height = 19
  217.         AutoSize = False
  218.         Caption = 'More'
  219.       end
  220.       object Label3: TLabel
  221.         Left = 57
  222.         Top = 18
  223.         Width = 41
  224.         Height = 15
  225.         Alignment = taRightJustify
  226.         AutoSize = False
  227.         Caption = 'Normal'
  228.       end
  229.       object Resolution: TScrollBar
  230.         Left = 8
  231.         Top = 38
  232.         Width = 90
  233.         Height = 16
  234.         Max = 0
  235.         Min = -100
  236.         PageSize = 0
  237.         TabOrder = 0
  238.         OnChange = ResolutionChange
  239.       end
  240.     end
  241.     object CBProp: TCheckBox
  242.       Left = 13
  243.       Top = 304
  244.       Width = 92
  245.       Height = 17
  246.       Caption = 'Proportional'
  247.       Checked = True
  248.       State = cbChecked
  249.       TabOrder = 5
  250.       OnClick = CBPropClick
  251.     end
  252.   end
  253.   object PrinterSetupDialog1: TPrinterSetupDialog
  254.     Left = 149
  255.     Top = 46
  256.   end
  257. end
  258.