IRowsetNotify.OnFieldChange 方法

定义

将对列值所做的任何更改通知给使用方。

public:
 int OnFieldChange(Microsoft::VisualBasic::Compatibility::VB6::IRowset ^ rowset, int hRow, int cColumns, cli::array <int> ^ rgColumns, int dbReason, int eventPhase, int fCantDeny);
public int OnFieldChange (Microsoft.VisualBasic.Compatibility.VB6.IRowset rowset, int hRow, int cColumns, int[] rgColumns, int dbReason, int eventPhase, int fCantDeny);
abstract member OnFieldChange : Microsoft.VisualBasic.Compatibility.VB6.IRowset * int * int * int[] * int * int * int -> int
Public Function OnFieldChange (rowset As IRowset, hRow As Integer, cColumns As Integer, rgColumns As Integer(), dbReason As Integer, eventPhase As Integer, fCantDeny As Integer) As Integer

参数

rowset
IRowset

指向行集合的指针,由于使用方可能从多个行集合接收通知,所以此指针标识正在调用的行集合。

hRow
Int32

其中的列值已更改的行的句柄。

cColumns
Int32

rgColumns 中列的计数。

rgColumns
Int32[]

值已更改的行中的列的数组。

dbReason
Int32

DBREASON 的值指示的更改原因。

eventPhase
Int32

此通知的阶段。

fCantDeny
Int32

将此标志设置为 true 时,使用方将无法通过返回 S_FALSE 来禁止该事件,因为提供程序无法撤消该事件。

返回

一个表示结果的 Integer

注解

注意

Microsoft.VisualBasic.Compatibility.VB6 命名空间中的函数和对象用于工具从 Visual Basic 6.0 升级到 Visual Basic。 多数情况下,这些函数和对象可再现 .NET Framework 中其他命名空间的功能。 只有当 Visual Basic 6.0 代码模型与 .NET Framework 实现有显著区别时,才必须使用这些函数和对象。

适用于