📄 vbpersistobject.cls
字号:
VERSION 1.0 CLASS
BEGIN
MultiUse = -1 'True
Persistable = 1 'Persistable
DataBindingBehavior = 0 'vbNone
DataSourceBehavior = 0 'vbNone
MTSTransactionMode = 0 'NotAnMTSObject
END
Attribute VB_Name = "Testing"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = True
Attribute VB_PredeclaredId = False
Attribute VB_Exposed = True
Dim m_x As Integer
Dim m_y As Integer
Function Sum(x As Integer, y As Integer) As Integer
Sum = x + y
m_x = x
m_y = y
End Function
Private Sub Class_Initialize()
MsgBox "Initialize"
End Sub
Private Sub Class_Terminate()
MsgBox "Terminate"
End Sub
Private Sub Class_InitProperties()
MsgBox "InitProperties"
m_x = 4
m_y = 3
End Sub
Private Sub Class_ReadProperties(PropBag As PropertyBag)
m_x = PropBag.ReadProperty("x", 0)
m_y = PropBag.ReadProperty("y", 0)
MsgBox "ReadProperties m_x = " & m_x & " and m_y = " & m_y
End Sub
Private Sub Class_WriteProperties(PropBag As PropertyBag)
MsgBox "WriteProperties m_x = " & m_x & " and m_y = " & m_y
PropBag.WriteProperty "x", m_x
PropBag.WriteProperty "y", m_y
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -