|
|
|
|
WidgetProcedure (Function) In french: WidgetProcédure Specifies the procedure that will be called when the user clicks an iOS 14 widget. This function must be used in the "Initializing" event associated with the project, specifying the "iOS" target.
<IF ExecutionTarget=iOS> WidgetProcedure(OnWidgetClick) <END>
Syntax
WidgetProcedure(<WLanguage procedure>)
<WLanguage procedure>: Procedure name WLanguage procedure ("callback") called when an iOS 14 widget is clicked. This procedure has the following format :
PROCEDURE <Procedure name> (<Element name>)
where <Element name> corresponds to: - the full name of the clicked control (medium or large widgets),
- the window name (small widgets).
This procedure can also be an internal procedure.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|