File: collectionpropeditform.lfm

package info (click to toggle)
lazarus 0.9.28.2-12
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 93,096 kB
  • ctags: 89,312
  • sloc: pascal: 820,189; xml: 202,194; makefile: 110,323; sh: 2,460; perl: 395; sql: 174; ansic: 133
file content (79 lines) | stat: -rw-r--r-- 1,713 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
object CollectionPropertyEditorForm: TCollectionPropertyEditorForm
  ActiveControl = CollectionListBox
  BorderStyle = bsSizeToolWin
  Caption = 'CollectionPropertyEditorForm'
  ClientHeight = 300
  ClientWidth = 190
  Constraints.MinHeight = 100
  Constraints.MinWidth = 190
  OnCreate = FormCreate
  OnDestroy = FormDestroy
  PixelsPerInch = 96
  Position = poDefaultPosOnly
  HorzScrollBar.Page = 189
  VertScrollBar.Page = 299
  Left = 290
  Height = 300
  Top = 153
  Width = 190
  object ToolBar1: TToolBar
    AutoSize = True
    ButtonHeight = 40
    ButtonWidth = 44
    Caption = 'ToolBar1'
    Flat = True
    Height = 42
    ShowCaptions = True
    TabOrder = 0
    Height = 42
    Width = 190
    object AddButton: TToolButton
      Caption = 'Add'
      OnClick = AddButtonClick
      Height = 40
      Top = 2
      Width = 44
    end
    object DeleteButton: TToolButton
      Caption = 'Delete'
      OnClick = DeleteButtonClick
      Left = 45
      Height = 40
      Top = 2
      Width = 44
    end
    object ToolButton3: TToolButton
      Caption = 'ToolButton3'
      Style = tbsSeparator
      Width = 10
      Left = 89
      Height = 40
      Top = 2
      Width = 10
    end
    object MoveUpButton: TToolButton
      Caption = 'Up'
      OnClick = MoveUpButtonClick
      Left = 99
      Height = 40
      Top = 2
      Width = 44
    end
    object MoveDownButton: TToolButton
      Caption = 'Down'
      OnClick = MoveDownButtonClick
      Left = 143
      Height = 40
      Top = 2
      Width = 44
    end
  end
  object CollectionListBox: TListBox
    Align = alClient
    OnClick = CollectionListBoxClick
    TabOrder = 1
    Height = 258
    Top = 42
    Width = 190
  end
end