commitButtonText property
String
get
commitButtonText
Implementation
String get commitButtonText {
final retValuePtr = calloc<HSTRING>();
try {
final hr = ptr.ref.vtable
.elementAt(12)
.cast<
Pointer<
NativeFunction<HRESULT Function(Pointer, Pointer<IntPtr>)>>>()
.value
.asFunction<
int Function(
Pointer, Pointer<IntPtr>)>()(ptr.ref.lpVtbl, retValuePtr);
if (FAILED(hr)) throw WindowsException(hr);
final retValue = retValuePtr.toDartString();
return retValue;
} finally {
WindowsDeleteString(retValuePtr.value);
free(retValuePtr);
}
}
set
commitButtonText
(String value)
Implementation
set commitButtonText(String value) {
final hstr = convertToHString(value);
try {
final hr = ptr.ref.vtable
.elementAt(13)
.cast<Pointer<NativeFunction<HRESULT Function(Pointer, IntPtr)>>>()
.value
.asFunction<int Function(Pointer, int)>()(ptr.ref.lpVtbl, hstr);
if (FAILED(hr)) throw WindowsException(hr);
} finally {
WindowsDeleteString(hstr);
}
}