www.mxdraw.com
|
控件命令执行事件回调函数指针,多用于js脚本使用
[id(27) , helpstring("property ImplementCommandEventFun"), hidden, nonbrowsable]
IDispatch* ImplementCommandEventFun;
例如: VB.net里动态创建控件的使用
Public Sub New() MyBase.New() Class_Initialize_Renamed() AddHandler oTreeView.ImplementCommandEvent, AddressOf oTreeViewEvent End Sub Private Sub oTreeViewEvent(ByVal iCmdId As Long) End Sub