File: IEditableTextControl.xml

package info (click to toggle)
mono-reference-assemblies 3.12.1%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 604,240 kB
  • ctags: 625,505
  • sloc: cs: 3,967,741; xml: 2,793,081; ansic: 418,042; java: 60,435; sh: 14,833; makefile: 11,576; sql: 7,956; perl: 1,467; cpp: 1,446; yacc: 1,203; python: 598; asm: 422; sed: 16; php: 1
file content (50 lines) | stat: -rw-r--r-- 3,766 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<?xml version="1.0" encoding="utf-8"?>
<Type Name="IEditableTextControl" FullName="System.Web.UI.IEditableTextControl">
  <TypeSignature Language="C#" Value="public interface IEditableTextControl : System.Web.UI.ITextControl" />
  <AssemblyInfo>
    <AssemblyName>System.Web</AssemblyName>
    <AssemblyVersion>2.0.0.0</AssemblyVersion>
  </AssemblyInfo>
  <Interfaces>
    <Interface>
      <InterfaceName>System.Web.UI.ITextControl</InterfaceName>
    </Interface>
  </Interfaces>
  <Docs>
    <since version=".NET 2.0" />
    <remarks>
      <attribution license="cc4" from="Microsoft" modified="false" />
      <para>Controls, such as <see cref="T:System.Web.UI.WebControls.TextBox" /> and those that derive from <see cref="T:System.Web.UI.WebControls.ListControl" />, provide a text property that can be changed by a page user. When the text property is changed, an event is raised to notify handlers that the property has changed. Classes that implement <see cref="T:System.Web.UI.IEditableTextControl" /> must define the <see cref="E:System.Web.UI.IEditableTextControl.TextChanged" /> event.</para>
      <para>Although the <see cref="T:System.Web.UI.IEditableTextControl" /> interface contains only the <see cref="E:System.Web.UI.IEditableTextControl.TextChanged" /> event, it inherits from the <see cref="T:System.Web.UI.ITextControl" /> interface, which defines a <see cref="P:System.Web.UI.ITextControl.Text" /> property. To implement the <see cref="T:System.Web.UI.IEditableTextControl" /> interface, a control must define the <see cref="P:System.Web.UI.ITextControl.Text" /> property and the <see cref="E:System.Web.UI.IEditableTextControl.TextChanged" /> event that occurs when the <see cref="P:System.Web.UI.ITextControl.Text" /> property changes between posts to the server.</para>
      <para>
        <see cref="T:System.Web.UI.IEditableTextControl" /> is implemented by <see cref="T:System.Web.UI.WebControls.TextBox" /> and <see cref="T:System.Web.UI.WebControls.ListControl" />. In those classes, the event is raised through the <see cref="M:System.Web.UI.WebControls.ListControl.OnTextChanged(System.EventArgs)" /> or <see cref="M:System.Web.UI.WebControls.TextBox.OnTextChanged(System.EventArgs)" /> methods. A class that implements the <see cref="T:System.Web.UI.IEditableTextControl" /> interface could define a similar method for raising the event.</para>
    </remarks>
    <summary>
      <attribution license="cc4" from="Microsoft" modified="false" />
      <para>Represents a control that renders text that can be changed by the user.</para>
    </summary>
  </Docs>
  <Members>
    <Member MemberName="TextChanged">
      <MemberSignature Language="C#" Value="public event EventHandler TextChanged;" />
      <MemberType>Event</MemberType>
      <ReturnValue>
        <ReturnType>System.EventHandler</ReturnType>
      </ReturnValue>
      <Docs>
        <since version=".NET 2.0" />
        <remarks>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>The <see cref="E:System.Web.UI.IEditableTextControl.TextChanged" /> event occurs when the <see cref="P:System.Web.UI.ITextControl.Text" /> property changes between posts to the server. An implementation of this event can be found in either the <see cref="T:System.Web.UI.WebControls.TextBox" /> or the <see cref="T:System.Web.UI.WebControls.ListControl" /> control. </para>
        </remarks>
        <summary>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>Occurs when the content of the text changes between posts to the server. </para>
        </summary>
      </Docs>
      <AssemblyInfo>
        <AssemblyVersion>2.0.0.0</AssemblyVersion>
      </AssemblyInfo>
    </Member>
  </Members>
</Type>