窗口中的Table,想在右击单元格的时候出现我配置的快捷菜单,但是目前配置下来并没有效果
BeforeShowContextMenu代码如下:
If e.HitType = HitTypeEnum.cell Then e.Form.Strips("rightButton").Items(0).visible = True
e.Form.Strips("rightButton").Items(1).visible = True
e.Cancel = True
Else
e.ContextMenu = ContextMenus("Column")
e.Form.Strips("rightButton").Items(0).visible = False
e.Form.Strips("rightButton").Items(1).visible = False
End If
感谢大佬。还有一个问题请教一下。自定义右键菜单中,我点击一个选项,如何获取当前触发的打开右键菜单的单元格的行列和内容呢。现在是想获取是哪个单元格触发的这个
参考:
http://www.foxtable.com/webhelp/topics/0447.htm
dim r as row = Tables("订单").rows(Tables("订单").rowsel)
dim c as col = Tables("订单").cols(Tables("订单").colsel)