# SetMenuUserID 方法
SetMenuUserID((GridName, MenuID,MenuName)
在指定窗格中设置用户自定义菜单操作(每个窗格左上角将增加一个齿轮图标)
参数
参数 | 说明 |
---|---|
GridName | 窗格名称 |
MenuID | 菜单ID,有效值 0 - 199 |
MenuName | 菜单名称 |
'先清除已有菜单ID
call Technic.ClearMenuUserID("Main")
'再创建菜单ID
call Technic.SetMenuUserID("Main",5,"快捷菜单1")
call Technic.SetMenuUserID("Main",6,"快捷菜单2")
call Technic.SetMenuUserID("Main",7,"快捷菜单3")
1
2
3
4
5
6
2
3
4
5
6
应用于