-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathMenuItem.cls
More file actions
39 lines (31 loc) · 926 Bytes
/
MenuItem.cls
File metadata and controls
39 lines (31 loc) · 926 Bytes
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
VERSION 1.0 CLASS
BEGIN
MultiUse = -1 'True
Persistable = 0 'NotPersistable
DataBindingBehavior = 0 'vbNone
DataSourceBehavior = 0 'vbNone
MTSTransactionMode = 0 'NotAnMTSObject
END
Attribute VB_Name = "MenuItem"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = True
Attribute VB_PredeclaredId = False
Attribute VB_Exposed = False
'--------------------------------------------------------------------------------
' Component : MenuItem
' Project : ViDock
'
' Description: Represents an OS file menu item.
' IE: "File" on Notepad.
'
'--------------------------------------------------------------------------------
Option Explicit
Public Width As Single
Public Left As Single
Public Caption As String
Public Children As Collection
Public itemID As Long
Public hWnd As Long
Private Sub Class_Initialize()
Set Children = New Collection
End Sub