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 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93
|
<?xml version="1.0" encoding="utf-8"?>
<Type Name="TextBoxMode" FullName="System.Web.UI.WebControls.TextBoxMode">
<TypeSignature Language="C#" Maintainer="auto" Value="public enum TextBoxMode" />
<AssemblyInfo>
<AssemblyName>System.Web</AssemblyName>
<AssemblyPublicKey>
</AssemblyPublicKey>
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
<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>
<Base>
<BaseTypeName>System.Enum</BaseTypeName>
</Base>
<Docs>
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The <see cref="T:System.Web.UI.WebControls.TextBoxMode" /> enumeration represents the different display options for <see cref="T:System.Web.UI.WebControls.TextBox" /> controls.</para>
<para>
<see cref="F:System.Web.UI.WebControls.TextBoxMode.SingleLine" /> mode displays the <see cref="T:System.Web.UI.WebControls.TextBox" /> control as a single row. If the user enters text that exceeds the physical size of the <see cref="T:System.Web.UI.WebControls.TextBox" /> control, the text will scroll horizontally. </para>
<para>
<see cref="F:System.Web.UI.WebControls.TextBoxMode.MultiLine" /> mode displays the height of the <see cref="T:System.Web.UI.WebControls.TextBox" /> based on the <see cref="P:System.Web.UI.WebControls.TextBox.Rows" /> property, and allows data entry on multiple lines. The text will automatically wrap if the <see cref="P:System.Web.UI.WebControls.TextBox.Wrap" /> property is set to true. If the user enters text that exceeds the physical size of the <see cref="T:System.Web.UI.WebControls.TextBox" />, the text will scroll accordingly and scroll bars will appear.</para>
<para>The behavior of <see cref="F:System.Web.UI.WebControls.TextBoxMode.Password" /> mode is similar to <see cref="F:System.Web.UI.WebControls.TextBoxMode.SingleLine" /> mode except that all characters entered in the <see cref="T:System.Web.UI.WebControls.TextBox" /> control are masked and are not saved in view state.</para>
<para>The remaining options correspond to type attribute values for the input element in the HTML5 specification.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Specifies the behavior mode of the text box.</para>
</summary>
</Docs>
<Members>
<Member MemberName="MultiLine">
<MemberSignature Language="C#" Value="MultiLine" />
<MemberType>Field</MemberType>
<ReturnValue>
<ReturnType>System.Web.UI.WebControls.TextBoxMode</ReturnType>
</ReturnValue>
<Parameters>
</Parameters>
<Docs>
<remarks>To be added</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Represents multiline entry mode.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="Password">
<MemberSignature Language="C#" Value="Password" />
<MemberType>Field</MemberType>
<ReturnValue>
<ReturnType>System.Web.UI.WebControls.TextBoxMode</ReturnType>
</ReturnValue>
<Parameters>
</Parameters>
<Docs>
<remarks>To be added</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Represents password entry mode.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="SingleLine">
<MemberSignature Language="C#" Value="SingleLine" />
<MemberType>Field</MemberType>
<ReturnValue>
<ReturnType>System.Web.UI.WebControls.TextBoxMode</ReturnType>
</ReturnValue>
<Parameters>
</Parameters>
<Docs>
<remarks>To be added</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Represents single-line entry mode.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
</Members>
</Type>
|