All Manuals > CAPI User Guide and Reference Manual > 21 CAPI Reference Entries

editor-pane-buffer Function

Summary

Returns the editor buffer associated with an editor pane.

Package

capi

Signature

editor-pane-buffer pane

Arguments
pane
Description

The function editor-pane-buffer returns the editor buffer associated with pane, which can be manipulated in the standard ways with the routines in the editor package.

Examples
(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


CAPI User Guide and Reference Manual (Windows version) - 01 Dec 2021 19:33:57