forked from stijnsanders/jsonDoc
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathjsonV1.dfm
52 lines (52 loc) · 1.21 KB
/
jsonV1.dfm
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
object frmJsonViewer: TfrmJsonViewer
Left = 192
Top = 124
Width = 1088
Height = 563
Caption = 'jsonV'
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -13
Font.Name = 'Tahoma'
Font.Style = []
OldCreateOrder = False
Position = poDefault
PixelsPerInch = 96
TextHeight = 16
object TreeView1: TTreeView
Left = 0
Top = 0
Width = 1072
Height = 524
Align = alClient
HideSelection = False
Indent = 19
ReadOnly = True
TabOrder = 0
ToolTips = False
OnChange = TreeView1Change
OnCreateNodeClass = TreeView1CreateNodeClass
OnDblClick = TreeView1DblClick
OnExpanding = TreeView1Expanding
end
object ActionList1: TActionList
Left = 8
Top = 8
object EditCopy1: TEditCopy
Category = 'Edit'
Caption = '&Copy'
Hint = 'Copy|Copies the selection and puts it on the Clipboard'
ImageIndex = 1
ShortCut = 16451
OnExecute = EditCopy1Execute
end
object EditCopyValue1: TAction
Category = 'Edit'
Caption = 'Copy &value'
Hint = 'Copy value|Copies the value only to the clipboard'
ShortCut = 24643
OnExecute = EditCopyValue1Execute
end
end
end