Next Prev Up Top Contents Index

display-message-for-pane

Function
Summary

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

Syntax

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 .

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

display-message


LispWorks CAPI Reference Manual - 14 Dec 2001

Next Prev Up Top Contents Index