orientation property

VideoOrientation orientation

Implementation

VideoOrientation get orientation {
  final value = calloc<Int32>();

  try {
    final hr = ptr.ref.vtable
            .elementAt(26)
            .cast<
                Pointer<
                    NativeFunction<
                        HRESULT Function(
                            VTablePointer lpVtbl, Pointer<Int32> value)>>>()
            .value
            .asFunction<
                int Function(VTablePointer lpVtbl, Pointer<Int32> value)>()(
        ptr.ref.lpVtbl, value);

    if (FAILED(hr)) throwWindowsException(hr);

    return VideoOrientation.from(value.value);
  } finally {
    free(value);
  }
}