home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 5 / Apprentice-Release5.iso / Environments / Frontier 4.0.1 / Frontier SDK 4.0b2 / Sample Code / Minimal Applet / MinApp & Frontier / DocServer Source Text next >
Encoding:
Text File  |  1993-11-05  |  1.5 KB  |  52 lines  |  [TEXT/CWIE]

  1.  
  2. /*© copyright 1991-96 UserLand Software, Inc. All Rights Reserved.*/
  3.  
  4.  
  5. Verb    MinApp.bringToFront
  6. Syntax    MinApp.bringToFront ()
  7. Parameters    None.
  8. Action    Makes MinApp the frontmost application.
  9. Returns    True if MinApp is running and could be brought to the front, false otherwise.
  10. Examples    MinApp.bringToFront ()
  11.     « false
  12. See Also    MinApp.launch
  13.  
  14. Verb    MinApp.launch
  15. Syntax    MinApp.launch ()
  16. Parameters    None.
  17. Action    Launches the MinApp application.
  18. Returns    True if MinApp is running, false otherwise.
  19. Examples    MinApp.launch ()
  20.     « true
  21. See Also    MinApp.bringToFront
  22. MinApp.quit
  23.  
  24. Verb    MinApp.quit
  25. Syntax    MinApp.quit ()
  26. Parameters    None.
  27. Action    Quits the MinApp application.
  28. Returns    True if MinApp was running, false otherwise.
  29. Examples    MinApp.quit ()
  30.     « true
  31. See Also    MinApp.bringToFront
  32.  
  33. Verb    MinApp.lowerCaseText
  34. Syntax    MinApp.lowerCaseText ()
  35. Parameters    None.
  36. Action    Converts all the text in MinApp's target window to lower case.
  37. Returns    True.
  38. Examples    MinApp.lowerCaseText ()
  39.     « true
  40. Notes    There is little utility in this verb, it's provided as part of the example of verb documentation and implementation of the Applet Toolkit.
  41. See Also    MinApp.upperCaseText
  42.  
  43. Verb    MinApp.upperCaseText
  44. Syntax    MinApp.upperCaseText ()
  45. Parameters    None.
  46. Action    Converts all the text in MinApp's target window to upper case.
  47. Returns    True.
  48. Examples    MinApp.upperCaseText ()
  49.     « true
  50. Notes    There is little utility in this verb, it's provided as part of the example of verb documentation and implementation of the Applet Toolkit.
  51. See Also    MinApp.lowerCaseText
  52.