2003-02-12 01:57:20 +00:00
<Type Name= "EditableText" FullName= "Atk.EditableText" >
2005-05-23 20:41:51 +00:00
<TypeSignature Language= "C#" Maintainer= "auto" Value= "public interface EditableText : GLib.IWrapper" />
2011-11-09 16:01:51 +00:00
<TypeSignature Language= "ILAsm" Value= ".class public interface auto ansi abstract EditableText implements class GLib.IWrapper" />
2003-02-12 01:57:20 +00:00
<AssemblyInfo >
<AssemblyName > atk-sharp</AssemblyName>
2003-12-24 01:35:30 +00:00
<AssemblyPublicKey >
</AssemblyPublicKey>
2003-02-12 01:57:20 +00:00
</AssemblyInfo>
2003-02-23 07:26:30 +00:00
<ThreadSafetyStatement > Gtk# is thread aware, but not thread safe; See the <link location= "node:gtk-sharp/programming/threads" > Gtk# Thread Programming</link> for details.</ThreadSafetyStatement>
2011-11-09 16:01:51 +00:00
<Interfaces >
<Interface >
<InterfaceName > GLib.IWrapper</InterfaceName>
</Interface>
</Interfaces>
2003-02-12 01:57:20 +00:00
<Docs >
2004-06-24 22:17:50 +00:00
<summary > The ATK interface implemented by components containing user-editable text content</summary>
<remarks >
<para >
<see cref= "T:Atk.EditableText" /> should be implemented by UI components which
2004-08-17 20:43:49 +00:00
contain text which the user can edit, via the <see cref= "T:Atk.Object" /> corresponding to that component (see <see cref= "T:Atk.Object" /> ).
2004-06-24 22:17:50 +00:00
</para>
<para >
2004-08-17 20:43:49 +00:00
<see cref= "T:Atk.EditableText" /> is a subclass of <see cref= "T:Atk.Text" /> , and as such, an
2004-06-24 22:17:50 +00:00
object which implements AtkEditableText is by definition an
<see cref= "T:Atk.Text" /> implementor as well.
</para>
</remarks>
2003-02-12 01:57:20 +00:00
</Docs>
<Members >
2011-11-09 16:01:51 +00:00
<Member MemberName= "CopyText" >
<MemberSignature Language= "C#" Value= "public void CopyText (int start_pos, int end_pos);" />
<MemberSignature Language= "ILAsm" Value= ".method public hidebysig newslot virtual instance void CopyText(int32 start_pos, int32 end_pos) cil managed" />
2003-02-12 01:57:20 +00:00
<MemberType > Method</MemberType>
<ReturnValue >
<ReturnType > System.Void</ReturnType>
</ReturnValue>
<Parameters >
2003-09-17 21:56:59 +00:00
<Parameter Name= "start_pos" Type= "System.Int32" />
<Parameter Name= "end_pos" Type= "System.Int32" />
</Parameters>
2003-02-12 01:57:20 +00:00
<Docs >
2004-06-24 22:17:50 +00:00
<param name= "start_pos" > start position</param>
<param name= "end_pos" > end position</param>
2011-11-09 16:01:51 +00:00
<summary > Copy text</summary>
2004-06-24 22:17:50 +00:00
<remarks >
<para >
2011-11-09 16:01:51 +00:00
This method only copies the text up to <paramref name= "end_pos" /> , it does not include the text at that position.
</para>
2004-06-24 22:17:50 +00:00
</remarks>
2003-02-12 01:57:20 +00:00
</Docs>
</Member>
<Member MemberName= "CutText" >
2005-05-23 20:41:51 +00:00
<MemberSignature Language= "C#" Value= "public void CutText (int start_pos, int end_pos);" />
2011-11-09 16:01:51 +00:00
<MemberSignature Language= "ILAsm" Value= ".method public hidebysig newslot virtual instance void CutText(int32 start_pos, int32 end_pos) cil managed" />
2003-02-12 01:57:20 +00:00
<MemberType > Method</MemberType>
<ReturnValue >
<ReturnType > System.Void</ReturnType>
</ReturnValue>
<Parameters >
2003-09-17 21:56:59 +00:00
<Parameter Name= "start_pos" Type= "System.Int32" />
<Parameter Name= "end_pos" Type= "System.Int32" />
</Parameters>
2003-02-12 01:57:20 +00:00
<Docs >
2004-06-24 22:17:50 +00:00
<param name= "start_pos" > start position</param>
<param name= "end_pos" > end position</param>
2011-11-09 16:01:51 +00:00
<summary > Cut text</summary>
2004-06-24 22:17:50 +00:00
<remarks >
<para >
2004-08-24 17:01:00 +00:00
This method only cuts the text up to <paramref name= "end_pos" /> , it does not include the text at that position.
2004-06-24 22:17:50 +00:00
</para>
</remarks>
2003-02-12 01:57:20 +00:00
</Docs>
</Member>
2011-11-09 16:01:51 +00:00
<Member MemberName= "DeleteText" >
<MemberSignature Language= "C#" Value= "public void DeleteText (int start_pos, int end_pos);" />
<MemberSignature Language= "ILAsm" Value= ".method public hidebysig newslot virtual instance void DeleteText(int32 start_pos, int32 end_pos) cil managed" />
2003-02-12 01:57:20 +00:00
<MemberType > Method</MemberType>
<ReturnValue >
<ReturnType > System.Void</ReturnType>
</ReturnValue>
<Parameters >
2003-09-17 21:56:59 +00:00
<Parameter Name= "start_pos" Type= "System.Int32" />
<Parameter Name= "end_pos" Type= "System.Int32" />
</Parameters>
2003-02-12 01:57:20 +00:00
<Docs >
2004-06-24 22:17:50 +00:00
<param name= "start_pos" > start position</param>
<param name= "end_pos" > end position</param>
2011-11-09 16:01:51 +00:00
<summary > Delete text</summary>
2004-06-24 22:17:50 +00:00
<remarks >
<para >
2011-11-09 16:01:51 +00:00
This only deletes text up to, but not including <paramref name= "end_pos" /> . </para>
2004-06-24 22:17:50 +00:00
</remarks>
2003-02-12 01:57:20 +00:00
</Docs>
</Member>
2011-11-09 16:01:51 +00:00
<Member MemberName= "InsertText" >
<MemberSignature Language= "C#" Value= "public void InsertText (string str1ng, ref int position);" />
<MemberSignature Language= "ILAsm" Value= ".method public hidebysig newslot virtual instance void InsertText(string str1ng, int32 position) cil managed" />
<MemberType > Method</MemberType>
<ReturnValue >
<ReturnType > System.Void</ReturnType>
</ReturnValue>
<Parameters >
<Parameter Name= "str1ng" Type= "System.String" />
<Parameter Name= "position" Type= "System.Int32&" RefType= "ref" />
</Parameters>
<Docs >
<param name= "str1ng" > To be added.</param>
<param name= "position" > To be added.</param>
<summary > To be added.</summary>
<remarks > To be added.</remarks>
</Docs>
</Member>
<Member MemberName= "PasteText" >
<MemberSignature Language= "C#" Value= "public void PasteText (int position);" />
<MemberSignature Language= "ILAsm" Value= ".method public hidebysig newslot virtual instance void PasteText(int32 position) cil managed" />
<MemberType > Method</MemberType>
<ReturnValue >
<ReturnType > System.Void</ReturnType>
</ReturnValue>
<Parameters >
<Parameter Name= "position" Type= "System.Int32" />
</Parameters>
<Docs >
<param name= "position" > position to paste</param>
<summary > Paste text from clipboard to specified position.</summary>
<remarks />
</Docs>
</Member>
2003-02-12 01:57:20 +00:00
<Member MemberName= "SetRunAttributes" >
2005-05-23 20:41:51 +00:00
<MemberSignature Language= "C#" Value= "public bool SetRunAttributes (GLib.SList attrib_set, int start_offset, int end_offset);" />
2011-11-09 16:01:51 +00:00
<MemberSignature Language= "ILAsm" Value= ".method public hidebysig newslot virtual instance bool SetRunAttributes(class GLib.SList attrib_set, int32 start_offset, int32 end_offset) cil managed" />
2003-02-12 01:57:20 +00:00
<MemberType > Method</MemberType>
<ReturnValue >
<ReturnType > System.Boolean</ReturnType>
</ReturnValue>
<Parameters >
2003-09-17 21:56:59 +00:00
<Parameter Name= "attrib_set" Type= "GLib.SList" />
<Parameter Name= "start_offset" Type= "System.Int32" />
<Parameter Name= "end_offset" Type= "System.Int32" />
</Parameters>
2003-02-12 01:57:20 +00:00
<Docs >
2004-06-24 22:17:50 +00:00
<param name= "attrib_set" > an <see cref= "T:Atk.AttributeSet" /> </param>
<param name= "start_offset" > start of range in which to set attributes</param>
<param name= "end_offset" > end of range in which to set attributes</param>
2011-11-09 16:01:51 +00:00
<summary > Sets the attributes for a specified range.</summary>
2004-06-24 22:17:50 +00:00
<returns >
<see langword= "true" /> if attributes successfully set for
2004-08-17 20:43:49 +00:00
the specified range, otherwise <see langword= "false" /> </returns>
2004-06-24 22:17:50 +00:00
<remarks >
<para >
Sets the attributes for a specified range. See the
ATK_ATTRIBUTE macros (such as ATK_ATTRIBUTE_LEFT_MARGIN)
for examples of attributes that can be set. Note that
other attributes that do not have corresponding
ATK_ATTRIBUTE macros may also be set for certain text
widgets.
</para>
</remarks>
2003-02-12 01:57:20 +00:00
</Docs>
</Member>
<Member MemberName= "TextContents" >
2011-11-09 16:01:51 +00:00
<MemberSignature Language= "C#" Value= "public string TextContents { set; }" />
<MemberSignature Language= "ILAsm" Value= ".property instance string TextContents" />
2003-02-12 01:57:20 +00:00
<MemberType > Property</MemberType>
<ReturnValue >
<ReturnType > System.String</ReturnType>
</ReturnValue>
2003-12-24 01:35:30 +00:00
<Parameters >
</Parameters>
2003-02-12 01:57:20 +00:00
<Docs >
2004-06-24 22:17:50 +00:00
<summary > Set text contents of text.</summary>
2005-05-23 20:41:51 +00:00
<value > contents of text</value>
2004-06-24 22:17:50 +00:00
<remarks />
2003-02-12 01:57:20 +00:00
</Docs>
</Member>
</Members>
2005-05-23 20:41:51 +00:00
</Type>