|
Copyright ® (1999-2008) EDMGROUP Pty Ltd - EZY Prolog Reference |
[This is preliminary specification and subject to change.]
Group
Type
determ
Syntax
ezy_dialog_destroy( EZY_RESULTS REPLY)
Flow patterns
(i)
Description:
Destroy opened dialog and return result parameters to calling clause
Sample:
% The following code destroys dialog and
% returns values of GUI elements
handler_ok(_,e_control(_,_,CTRLWIN,activated),0):-
TOP_FRAME_ADDRESS = ["TOP_FRAME"],
ezy_object_data(CTRLWIN,TOP_FRAME_ADDRESS,VALUE_TOP_FRAME),
% Destroy dialog and return Values
ezy_dialog_destroy([VALUE_TOP_FRAME]),
!.