pollForPotentialSupportedProperties method

int pollForPotentialSupportedProperties(
  1. Pointer<COMObject> pElement,
  2. Pointer<Pointer<SAFEARRAY>> propertyIds,
  3. Pointer<Pointer<SAFEARRAY>> propertyNames
)

Implementation

int pollForPotentialSupportedProperties(
        Pointer<COMObject> pElement,
        Pointer<Pointer<SAFEARRAY>> propertyIds,
        Pointer<Pointer<SAFEARRAY>> propertyNames) =>
    (ptr.ref.vtable + 52)
            .cast<
                Pointer<
                    NativeFunction<
                        Int32 Function(
                            Pointer,
                            Pointer<COMObject> pElement,
                            Pointer<Pointer<SAFEARRAY>> propertyIds,
                            Pointer<Pointer<SAFEARRAY>> propertyNames)>>>()
            .value
            .asFunction<
                int Function(
                    Pointer,
                    Pointer<COMObject> pElement,
                    Pointer<Pointer<SAFEARRAY>> propertyIds,
                    Pointer<Pointer<SAFEARRAY>> propertyNames)>()(
        ptr.ref.lpVtbl, pElement, propertyIds, propertyNames);