-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCopyFetchClass.cls
More file actions
50 lines (39 loc) · 1.09 KB
/
CopyFetchClass.cls
File metadata and controls
50 lines (39 loc) · 1.09 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
VERSION 1.0 CLASS
BEGIN
MultiUse = -1 'True
END
Attribute VB_Name = "CopyFetchClass"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = False
Attribute VB_Exposed = False
'@Folder("TableManager.Forms")
Option Explicit
Private Type TView
CopyClicked As Boolean
FetchClicked As Boolean
ChangeFileClicked As Boolean
Filename As String
End Type
Private this As TView
Public Property Get Self()
Set Self = Me
End Property
Public Property Get CopyClicked() As Boolean
CopyClicked = this.CopyClicked
End Property
Public Property Let CopyClicked(ByVal Clicked As Boolean)
this.CopyClicked = Clicked
End Property
Public Property Get FetchClicked() As Boolean
FetchClicked = this.FetchClicked
End Property
Public Property Let FetchClicked(ByVal Clicked As Boolean)
this.FetchClicked = Clicked
End Property
Public Property Get ChangeFileClicked() As Boolean
ChangeFileClicked = this.ChangeFileClicked
End Property
Public Property Let ChangeFileClicked(ByVal Clicked As Boolean)
this.ChangeFileClicked = Clicked
End Property