addTextEditTextChangedEventHandler method
Implementation
int addTextEditTextChangedEventHandler(
Pointer<COMObject> element,
int scope,
int textEditChangeType,
Pointer<COMObject> cacheRequest,
Pointer<COMObject> handler,
) =>
(ptr.ref.vtable + 64)
.cast<
Pointer<
NativeFunction<
Int32 Function(
Pointer,
Pointer<COMObject> element,
Int32 scope,
Int32 textEditChangeType,
Pointer<COMObject> cacheRequest,
Pointer<COMObject> handler,
)
>
>
>()
.value
.asFunction<
int Function(
Pointer,
Pointer<COMObject> element,
int scope,
int textEditChangeType,
Pointer<COMObject> cacheRequest,
Pointer<COMObject> handler,
)
>()(
ptr.ref.lpVtbl,
element,
scope,
textEditChangeType,
cacheRequest,
handler,
);