forked from syntax53/Nightmare-Redux
-
Notifications
You must be signed in to change notification settings - Fork 0
/
NMRTask_clsTrayIcon.cls
46 lines (38 loc) · 1.04 KB
/
NMRTask_clsTrayIcon.cls
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
VERSION 1.0 CLASS
BEGIN
MultiUse = -1 'True
Persistable = 0 'NotPersistable
DataBindingBehavior = 0 'vbNone
DataSourceBehavior = 0 'vbNone
MTSTransactionMode = 0 'NotAnMTSObject
END
Attribute VB_Name = "clsTrayIcon"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = False
Attribute VB_Exposed = True
Attribute VB_Ext_KEY = "SavedWithClassBuilder" ,"Yes"
Attribute VB_Ext_KEY = "Top_Level" ,"Yes"
Option Explicit
Option Compare Text
Private m_Icon As Integer
Private m_Key As String
Private m_ToolTip As String
Public Property Get Key() As String
Key = m_Key
End Property
Public Property Let Key(ByVal vNewValue As String)
m_Key = vNewValue
End Property
Public Property Get Icon() As Integer
Icon = m_Icon
End Property
Public Property Let Icon(ByVal vNewValue As Integer)
m_Icon = vNewValue
End Property
Public Property Get ToolTip() As String
ToolTip = m_ToolTip
End Property
Public Property Let ToolTip(ByVal vNewValue As String)
m_ToolTip = vNewValue
End Property