BeforeResizeRow

通过鼠标拖动,调整行高之前发生。

e参数属性有: 

Table:     触发事件的Table。
Position:  触发事件行的位置。
Cancel:    逻辑型,设为True,取消操作。

示例

例如禁止非开发者和管理员调整行高,可将BeforeResizeRow事件代码设为:

If User.Type <> UserTypeEnum.Developer AndAlso User.Type <> UserTypeEnum.Administrator Then
    e.Cancel = True
End If

 

 


本页地址:http://www.foxtable.com/webhelp/topics/0654.htm