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.
(-> voidsenda-textcopyextend?timestartend)
extend?: boolean
time: exact integer
start: exact non-negative integer or'start
end=: exact non-negative integer or'end'endCopies specified range of text into the clipboard. If
extend?is not#f, the old clipboard contents are appended. Ifstartis'startorendis'end, then the current selection start/end is used.See Cut and Paste for a discussion of the
timeargument. Iftimeis outside the platform-specific range of times, anexn:fail:contractexception is raised.
(-> voidsenda-textcopyextend?time)
extend?=#f: boolean
time=0: exact integerCopies 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
timeargument. Iftimeis outside the platform-specific range of times, anexn:fail:contractexception is raised.