-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCInfosJanela.cls
More file actions
35 lines (31 loc) · 840 Bytes
/
CInfosJanela.cls
File metadata and controls
35 lines (31 loc) · 840 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
VERSION 1.0 CLASS
BEGIN
MultiUse = -1 'True
END
Attribute VB_Name = "CInfosJanela"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = True
Attribute VB_PredeclaredId = False
Attribute VB_Exposed = True
Option Explicit
Private msCaption As String
Private msClasse As String
Private mlHandle As Long
Public Property Get Caption() As String
Caption = msCaption
End Property
Public Property Let Caption(ByVal sCaption As String)
msCaption = sCaption
End Property
Public Property Get Classe() As String
Classe = msClasse
End Property
Public Property Let Classe(ByVal sClasse As String)
msClasse = sClasse
End Property
Public Property Get Handle() As Long
Handle = mlHandle
End Property
Public Property Let Handle(ByVal lHandle As Long)
mlHandle = lHandle
End Property