scrollBarArrowSize property
Size
get
scrollBarArrowSize
Implementation
Size get scrollBarArrowSize {
final retValuePtr = calloc<Size>();
try {
final hr = ptr.ref.vtable
.elementAt(9)
.cast<
Pointer<
NativeFunction<HRESULT Function(Pointer, Pointer<Size>)>>>()
.value
.asFunction<
int Function(
Pointer, Pointer<Size>)>()(ptr.ref.lpVtbl, retValuePtr);
if (FAILED(hr)) throw WindowsException(hr);
final retValue = retValuePtr.ref;
return retValue;
} finally {}
}