addPropertyChangedEventHandlerNativeArray method

int addPropertyChangedEventHandlerNativeArray(
  1. Pointer<COMObject> element,
  2. int scope,
  3. Pointer<COMObject> cacheRequest,
  4. Pointer<COMObject> handler,
  5. Pointer<Uint32> propertyArray,
  6. int propertyCount,
)

Implementation

int addPropertyChangedEventHandlerNativeArray(
        Pointer<COMObject> element,
        int scope,
        Pointer<COMObject> cacheRequest,
        Pointer<COMObject> handler,
        Pointer<Uint32> propertyArray,
        int propertyCount) =>
    (ptr.ref.vtable + 34)
            .cast<
                Pointer<
                    NativeFunction<
                        Int32 Function(
                            Pointer,
                            Pointer<COMObject> element,
                            Int32 scope,
                            Pointer<COMObject> cacheRequest,
                            Pointer<COMObject> handler,
                            Pointer<Uint32> propertyArray,
                            Int32 propertyCount)>>>()
            .value
            .asFunction<
                int Function(
                    Pointer,
                    Pointer<COMObject> element,
                    int scope,
                    Pointer<COMObject> cacheRequest,
                    Pointer<COMObject> handler,
                    Pointer<Uint32> propertyArray,
                    int propertyCount)>()(ptr.ref.lpVtbl, element, scope,
        cacheRequest, handler, propertyArray, propertyCount);