clsbutton.cls

来自「VB开发的USB卸载助手源码VB开发的USB卸载助手源码VB开发的USB卸载助手」· CLS 代码 · 共 29 行

CLS
29
字号
VERSION 1.0 CLASS
BEGIN
  MultiUse = -1  'True
END
Attribute VB_Name = "clsButton"
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"
'local variable(s) to hold property value(s)
Private mvarColumn As Integer 'local copy
Public Property Let Column(ByVal vData As Integer)
'used when assigning a value to the property, on the left side of an assignment.
'Syntax: X.Column = 5
    mvarColumn = vData
End Property


Public Property Get Column() As Integer
'used when retrieving value of a property, on the right side of an assignment.
'Syntax: Debug.Print X.Column
    Column = mvarColumn
End Property



⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?