NextPrevUpTopContentsIndex

display-message-for-pane

Function
Summary

The function display-message-for-pane displays a message on the same screen as a specified pane.

Package

capi

Signature

display-message-for-pane pane format-string &rest format-args

Description

The function display-message-for-pane creates a message from the arguments using format , and then displays it on the same screen as pane .

Note: If you need to make a window-modal sheet on Cocoa, then use the function prompt-with-message.

Example
(setq pane (capi:contain (make-instance
                          'capi:text-input-pane)))
(capi:display-message-for-pane pane 
                              "Just created ~S" pane)
Compatibility Note

The function display-message-on-screen is retained for compatibility with previous versions of LispWorks. It is a synonym for display-message-for-pane .

See also

prompt-with-message
display-message


LispWorks CAPI Reference Manual - 25 Jul 2006

NextPrevUpTopContentsIndex