#DOCUMENTATION by cg
authorClaus Gittinger <cg@exept.de>
Mon, 17 Feb 2020 18:03:07 +0100
changeset 4440 7ad4e1da35ce
parent 4439 bf5e63a55ea1
child 4441 f6cdf309a539
#DOCUMENTATION by cg class: InputView class added: #examples comment/format in: #documentation
InputView.st
--- a/InputView.st	Mon Feb 17 17:54:05 2020 +0100
+++ b/InputView.st	Mon Feb 17 18:03:07 2020 +0100
@@ -46,9 +46,23 @@
     NOTICE: the event forwarding is a leftover from times when no delegation mechanism
             existed - it will vanish - use delegates for new code.
 
+    [caveat:]
+        do not use
+        it seems to (no longer) work on the desktop (at least with win10).
+
     [author:]
         Claus Gittinger
 "
+!
+
+examples
+"
+    |v|
+
+    v := InputView origin:0@0 extent:Display extent.
+    [Delay waitForSeconds:5. v destroy] fork.
+    v open.
+"
 ! !
 
 !InputView methodsFor:'accessing'!