-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathFormFindInfo.cls
More file actions
66 lines (54 loc) · 1.43 KB
/
FormFindInfo.cls
File metadata and controls
66 lines (54 loc) · 1.43 KB
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
VERSION 1.0 CLASS
BEGIN
MultiUse = -1 'True
Persistable = 0 'NotPersistable
DataBindingBehavior = 0 'vbNone
DataSourceBehavior = 0 'vbNone
MTSTransactionMode = 0 'NotAnMTSObject
END
Attribute VB_Name = "FormFindInfo"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = True
Attribute VB_PredeclaredId = False
Attribute VB_Exposed = True
Option Explicit
Private mIndex As Long
Private mName As String
Private mCaption As String
Private mIsCaptionLoaded As Boolean
Private mIsDisplayed As Boolean
Public Property Let Index(Value As Long)
mIndex = Value
End Property
Public Property Let Name(Value As String)
mName = Value
End Property
Public Property Let Caption(Value As String)
mCaption = Value
End Property
Public Property Let IsDisplayed(Value As Boolean)
mIsDisplayed = Value
End Property
Public Property Get Index() As Long
Index = mIndex
End Property
Public Property Get Name() As String
Name = mName
End Property
Public Property Get Caption() As String
Caption = mCaption
mIsCaptionLoaded = True
End Property
Public Property Get IsCaptionLoaded() As Boolean
IsCaptionLoaded = mIsCaptionLoaded
End Property
Public Property Get IsDisplayed() As Boolean
IsDisplayed = mIsDisplayed
End Property
Public Property Get Text() As String
Text = mCaption & " " & "(" & mName & ")"
End Property
Private Sub Class_Initialize()
mIsCaptionLoaded = False
mIsDisplayed = False
End Sub