Delphi What You Need To Know About Application.EndFunctionInvoke

FireWind

Свой
Регистрация
2 Дек 2005
Сообщения
1,957
Реакции
1,199
Credits
4,009
What You Need To Know About Application.EndFunctionInvoke
By Muhammad Azizul Hakim July 16, 2021

Use the EndFunctionInvoke property or DelphiVCL.Application.EndFunctionInvoke to block the caller until the specified ASyncResult completes.

Returns the result from the method that BeginInvoke asynchronously executes. This result is immediately returned after the given IAsyncResult finishes. The result type corresponds to a TObject class type.

EndFunctionInvoke raises any exception that may occur while the asynchronous method executes.

Let’s browse all the properties, methods, and built-in properties of the DelphiVCL.Application.EndFunctionInvoke using dir() command:
Python:
import DelphiVCL

dir(DelphiVCL.Application.EndFunctionInvoke)
See the responses in our Windows command prompt:
1626679558217.png
You can also read short information about the DelphiVCL.Application.EndFunctionInvoke using the print() command:
Python:
print(DelphiVCL.Application.EndFunctionInvoke)
print(DelphiVCL.Application.EndFunctionInvoke.__doc__)
See the responses in our Windows command prompt:
1626679621309.png