Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023 #include <Accessibility.idl>
00024
00025 module Accessibility {
00026
00039 interface EditableText : Text {
00046 boolean setTextContents (in string newContents);
00060 boolean insertText (in long position, in string text, in long length);
00067 boolean setAttributes (in string attributes, in long startPos, in long endPos);
00075 void copyText (in long startPos, in long endPos);
00084 boolean cutText (in long startPos, in long endPos);
00093 boolean deleteText (in long startPos, in long endPos);
00101 boolean pasteText (in long position);
00102
00110 void unImplemented5 ();
00111 void unImplemented6 ();
00112 void unImplemented9 ();
00113 void unImplemented10 ();
00114 void unImplemented11 ();
00115 void unImplemented12 ();
00116 };
00117 };