copy in text%
Copies items into the clipboard.
The system may execute a copy (in response to other method calls)
without calling this method. To extend or re-implement copying,
override the
do-copy in text% or
do-copy in pasteboard% method of an editor.
( -> void
send a-text copy extend? time start end)
extend? : boolean
time : exact integer
start : exact non-negative integer or 'start
end = : exact non-negative integer or 'end'end
Copies specified range of text into the clipboard. If extend? is
not #f, the old clipboard contents are appended. If
start is 'start or end is 'end, then the
current selection start/end is used.
See Cut and Paste for a discussion of the time argument. If
time is outside the platform-specific range of times,
an exn:application:mismatch exception is raised.
( -> void
send a-text copy extend? time)
extend? = : boolean
#f
time = : exact integer0
Copies the selected items into the clipboard. If extend? is not
#f, the old clipboard contents are appended.
See Cut and Paste for a discussion of the time argument. If
time is outside the platform-specific range of times,
an exn:application:mismatch exception is raised.