home *** CD-ROM | disk | FTP | other *** search
/ PC Format Collection 48 / SENT14D.ISO / tech / delphi / disk15 / dragdrop.pak / TABFORM.DFM / TABFORM.txt
Encoding:
Text File  |  1995-08-24  |  1.2 KB  |  60 lines

  1. object Form1: TForm1
  2.   Left = 200
  3.   Top = 99
  4.   AutoScroll = False
  5.   Width = 243
  6.   Height = 147
  7.   Caption = 'TabSet Drag/Drop Demo'
  8.   Font.Color = clBlack
  9.   Font.Height = -11
  10.   Font.Name = 'MS Sans Serif'
  11.   Font.Style = [fsBold]
  12.   PixelsPerInch = 96
  13.   TextHeight = 13
  14.   object TabSet1: TTabSet
  15.     Left = 0
  16.     Top = 99
  17.     Width = 235
  18.     Height = 21
  19.     Align = alBottom
  20.     Font.Color = clWindowText
  21.     Font.Height = -11
  22.     Font.Name = 'MS Sans Serif'
  23.     Font.Style = []
  24.     Tabs.Strings = (
  25.       'First'
  26.       'Second'
  27.       'Third'
  28.       'Fourth'
  29.       'Fifth')
  30.     TabIndex = 0
  31.     TabOrder = 0
  32.     OnDragDrop = TabSet1DragDrop
  33.     OnDragOver = TabSet1DragOver
  34.     OnMouseDown = TabSet1MouseDown
  35.   end
  36.   object Panel1: TPanel
  37.     Left = 0
  38.     Top = 0
  39.     Width = 235
  40.     Height = 99
  41.     Align = alClient
  42.     BevelOuter = bvNone
  43.     BorderWidth = 4
  44.     Caption = 'Panel1'
  45.     TabOrder = 1
  46.     object Label1: TLabel
  47.       Left = 4
  48.       Top = 4
  49.       Width = 227
  50.       Height = 91
  51.       Align = alClient
  52.       AutoSize = False
  53.       Caption = 
  54.         'The TabSet below supports rearranging the tabs by dragging them ' +
  55.         'to a new position.'
  56.       WordWrap = True
  57.     end
  58.   end
  59. end
  60.