close in frame:basic<%>
close
frame:basic<%>
This method closes the frame by calling the can-close?, on-close, and show methods.
can-close?
on-close
show
It's implementation is:
(inherit can-close? on-close) (public [show (lambda () (when (can-close?) (on-close) (show #f)))])
(send a-frame:basic close) -> void
(send a-frame:basic close)
send
a-frame:basic