suggestedStartLocation property
PickerLocationId
get
suggestedStartLocation
Implementation
PickerLocationId get suggestedStartLocation {
final retValuePtr = calloc<Int32>();
try {
final hr = ptr.ref.vtable
.elementAt(10)
.cast<
Pointer<
NativeFunction<HRESULT Function(Pointer, Pointer<Int32>)>>>()
.value
.asFunction<
int Function(
Pointer, Pointer<Int32>)>()(ptr.ref.lpVtbl, retValuePtr);
if (FAILED(hr)) throw WindowsException(hr);
return PickerLocationId.from(retValuePtr.value);
} finally {
free(retValuePtr);
}
}
set
suggestedStartLocation
(PickerLocationId value)
Implementation
set suggestedStartLocation(PickerLocationId value) {
final hr = ptr.ref.vtable
.elementAt(11)
.cast<Pointer<NativeFunction<HRESULT Function(Pointer, Int32)>>>()
.value
.asFunction<int Function(Pointer, int)>()(ptr.ref.lpVtbl, value.value);
if (FAILED(hr)) throw WindowsException(hr);
}