NextPrevUpTopContentsIndex

editor-pane-buffer

Function
Summary

The editor-pane-buffer function returns the editor buffer associated with an editor pane.

Package

capi

Signature

editor-pane-buffer pane

Description

This accessor function returns the editor buffer associated with an editor pane, which can be manipulated in the standard ways with the routines in the editor package.

Example
(setq editor-pane
      (capi:contain (make-instance 'capi:editor-pane
                                   :text "Hello world")))
(setq buffer 
      (capi:editor-pane-buffer editor-pane))
(editor:insert-string (editor:buffers-end buffer)
 (format nil "~%Here's some more text..."))
See also

editor-pane


LispWorks CAPI Reference Manual - 11 Apr 2005

NextPrevUpTopContentsIndex