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 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009
|
<?xml version="1.0" encoding="utf-8"?>
<Type Name="CheckBoxList" FullName="System.Web.UI.WebControls.CheckBoxList">
<TypeSignature Language="C#" Maintainer="auto" Value="public class CheckBoxList : System.Web.UI.WebControls.ListControl, System.Web.UI.INamingContainer, System.Web.UI.IPostBackDataHandler, System.Web.UI.WebControls.IRepeatInfoUser" />
<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.Web.UI.WebControls.ListControl</BaseTypeName>
</Base>
<Interfaces>
<Interface>
<InterfaceName>System.Web.UI.INamingContainer</InterfaceName>
</Interface>
<Interface>
<InterfaceName>System.Web.UI.IPostBackDataHandler</InterfaceName>
</Interface>
<Interface>
<InterfaceName>System.Web.UI.WebControls.IRepeatInfoUser</InterfaceName>
</Interface>
</Interfaces>
<Docs>
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>In this topic:</para>
<list type="bullet">
<item>
<para>
<format type="text/html">
<a href="#Introduction">Introduction</a>
</format>
</para>
</item>
<item>
<para>
<format type="text/html">
<a href="#SpecifyingListLayout">Specifying List Layout</a>
</format>
</para>
</item>
<item>
<para>
<format type="text/html">
<a href="#SpecifyingListItems">Specifying List Items</a>
</format>
</para>
</item>
<item>
<para>
<format type="text/html">
<a href="#Accessibility">Accessibility</a>
</format>
</para>
</item>
<item>
<para>
<format type="text/html">
<a href="#DeclarativeSyntax">Declarative Syntax</a>
</format>
</para>
</item>
</list>
<format type="text/html">
<a href="#Introduction" />
</format>
<format type="text/html">
<h2>Introduction</h2>
</format>
<para>The <see cref="T:System.Web.UI.WebControls.CheckBoxList" /> control provides a multi selection check box group that can be dynamically generated with data binding. It contains an <see cref="P:System.Web.UI.WebControls.ListControl.Items" /> collection with members corresponding to individual items in the list. To determine which items are checked, iterate through the collection and test the <see cref="P:System.Web.UI.WebControls.ListItem.Selected" /> property of each item in the list.</para>
<block subset="none" type="note">
<para>You can also use multiple <see cref="T:System.Web.UI.WebControls.CheckBox" /> controls. The <see cref="T:System.Web.UI.WebControls.CheckBoxList" /> control is easier for creating a set of check boxes using data binding, while the individual <see cref="T:System.Web.UI.WebControls.CheckBox" /> control gives you greater control over layout.</para>
</block>
<format type="text/html">
<a href="#SpecifyingListLayout" />
</format>
<format type="text/html">
<h2>Specifying List Layout</h2>
</format>
<para>You can specify the way the list is displayed by using the <see cref="P:System.Web.UI.WebControls.CheckBoxList.RepeatLayout" /> and <see cref="P:System.Web.UI.WebControls.CheckBoxList.RepeatDirection" /> properties. For information about layout options, see the <see cref="T:System.Web.UI.WebControls.RepeatLayout" /> enumeration.</para>
<para>By default, <see cref="P:System.Web.UI.WebControls.CheckBoxList.RepeatDirection" /> is set to RepeatDirection.Vertical. Setting this property to RepeatDirection.Horizontal renders the list horizontally. Some <see cref="P:System.Web.UI.WebControls.CheckBoxList.RepeatLayout" /> settings do not allow horizontal layout. For more information, see the <see cref="T:System.Web.UI.WebControls.RepeatLayout" /> enumeration.</para>
<format type="text/html">
<a href="#SpecifyingListItems" />
</format>
<format type="text/html">
<h2>Specifying List Items</h2>
</format>
<para>To specify items that you want to appear in the <see cref="T:System.Web.UI.WebControls.CheckBoxList" /> control, place a ListItem element for each entry between the opening and closing tags of the <see cref="T:System.Web.UI.WebControls.CheckBoxList" /> control.</para>
<para>The <see cref="T:System.Web.UI.WebControls.CheckBoxList" /> control also supports data binding. To bind the control to a data source, first create a data source, such as one of the <see cref="T:System.Web.UI.DataSourceControl" /> objects, that contains the items to display in the control. Next, use the <see cref="M:System.Web.UI.Control.DataBind" /> method to bind the data source to the <see cref="T:System.Web.UI.WebControls.CheckBoxList" /> control. Use the <see cref="P:System.Web.UI.WebControls.ListControl.DataTextField" /> and <see cref="P:System.Web.UI.WebControls.ListControl.DataValueField" /> properties to specify which field in the data source to bind to the Text and Value properties of each list item in the control, respectively. The <see cref="T:System.Web.UI.WebControls.CheckBoxList" /> control will now display the information from the data source.</para>
<para>To determine the selected items in the <see cref="T:System.Web.UI.WebControls.CheckBoxList" /> control, iterate through the <see cref="P:System.Web.UI.WebControls.ListControl.Items" /> collection and test the <see cref="P:System.Web.UI.WebControls.ListItem.Selected" /> property of each item in the collection.</para>
<block subset="none" type="note">
<para>This control can be used to display user input, which might include malicious client script. Check any information that is sent from a client for executable script, SQL statements, or other code before displaying it in your application. You can use validation controls to verify user input before displaying the input text in a control. ASP.NET provides an input request validation feature to block script and HTML in user input. For more information, see <format type="text/html"><a href="f3e7718f-63d0-44a3-bd5f-48cc2059c2a8">Securing Standard Controls</a></format>, <format type="text/html"><a href="6f67973f-dda0-45a1-ba9d-e88532d7dc5b">How to: Protect Against Script Exploits in a Web Application by Applying HTML Encoding to Strings</a></format>, and <format type="text/html"><a href="4ad3dacb-89e0-4cee-89ac-40a3f2a85461">Introduction to Validating User Input in ASP.NET Web Pages</a></format>.</para>
</block>
<format type="text/html">
<a href="#Accessibility" />
</format>
<format type="text/html">
<h2>Accessibility</h2>
</format>
<para>For information about how to configure this control so that it generates markup that conforms to accessibility standards, see <format type="text/html"><a href="7e3ce9c4-6b7d-4fb1-94b5-72cf2a44fe13">Accessibility in Visual Studio 2010 and ASP.NET 4</a></format> and <format type="text/html"><a href="847a37e3-ce20-41da-b0d3-7dfb0fdae9a0">ASP.NET Controls and Accessibility</a></format>.</para>
<format type="text/html">
<a href="#DeclarativeSyntax" />
</format>
<format type="text/html">
<h2>Declarative Syntax</h2>
</format>
<code><asp:CheckBoxList
AccessKey="string"
AppendDataBoundItems="True|<codeFeaturedElement>False</codeFeaturedElement>"
AutoPostBack="True|<codeFeaturedElement>False</codeFeaturedElement>"
BackColor="color name|#dddddd"
BorderColor="color name|#dddddd"
BorderStyle="<codeFeaturedElement>NotSet</codeFeaturedElement>|None|Dotted|Dashed|Solid|Double|Groove|Ridge|
Inset|Outset"
BorderWidth="size"
CausesValidation="True|<codeFeaturedElement>False</codeFeaturedElement>"
CellPadding="integer"
CellSpacing="integer"
CssClass="string"
DataMember="string"
DataSource="string"
DataSourceID="string"
DataTextField="string"
DataTextFormatString="string"
DataValueField="string"
Enabled="<codeFeaturedElement>True</codeFeaturedElement>|False"
EnableTheming="<codeFeaturedElement>True</codeFeaturedElement>|False"
EnableViewState="<codeFeaturedElement>True</codeFeaturedElement>|False"
Font-Bold="True|<codeFeaturedElement>False</codeFeaturedElement>"
Font-Italic="True|<codeFeaturedElement>False</codeFeaturedElement>"
Font-Names="string"
Font-Overline="True|<codeFeaturedElement>False</codeFeaturedElement>"
Font-Size="string|Smaller|Larger|XX-Small|X-Small|Small|Medium|
Large|X-Large|XX-Large"
Font-Strikeout="True|<codeFeaturedElement>False</codeFeaturedElement>"
Font-Underline="True|<codeFeaturedElement>False</codeFeaturedElement>"
ForeColor="color name|#dddddd"
Height="size"
ID="string"
OnDataBinding="DataBinding event handler"
OnDataBound="DataBound event handler"
OnDisposed="Disposed event handler"
OnInit="Init event handler"
OnLoad="Load event handler"
OnPreRender="PreRender event handler"
OnSelectedIndexChanged="SelectedIndexChanged event handler"
OnTextChanged="TextChanged event handler"
OnUnload="Unload event handler"
RepeatColumns="integer"
RepeatDirection="Horizontal|<codeFeaturedElement>Vertical</codeFeaturedElement>"
RepeatLayout="<codeFeaturedElement>Table</codeFeaturedElement>|Flow|OrderedList|UnorderedList"
runat="server"
SelectedIndex="integer"
SelectedValue="string"
SkinID="string"
Style="string"
TabIndex="integer"
TextAlign="Left|<codeFeaturedElement>Right</codeFeaturedElement>"
ToolTip="string"
ValidationGroup="string"
Visible="<codeFeaturedElement>True</codeFeaturedElement>|False"
Width="size"
>
<asp:ListItem
Enabled="<codeFeaturedElement>True</codeFeaturedElement>|False"
Selected="True|<codeFeaturedElement>False</codeFeaturedElement>"
Text="string"
Value="string"
/>
</asp:CheckBoxList></code>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Creates a multi selection check box group that can be dynamically created by binding the control to a data source.</para>
</summary>
</Docs>
<Members>
<Member MemberName=".ctor">
<MemberSignature Language="C#" Value="public CheckBoxList ();" />
<MemberType>Constructor</MemberType>
<ReturnValue />
<Parameters />
<Docs>
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Use this constructor to create and initialize a new instance of the <see cref="T:System.Web.UI.WebControls.CheckBoxList" /> class.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Initializes a new instance of the <see cref="T:System.Web.UI.WebControls.CheckBoxList" /> class.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="CellPadding">
<MemberSignature Language="C#" Value="public virtual int CellPadding { set; get; }" />
<MemberType>Property</MemberType>
<ReturnValue>
<ReturnType>System.Int32</ReturnType>
</ReturnValue>
<Parameters />
<Docs>
<value>To be added: an object of type 'int'</value>
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Use this property to control the spacing between the contents of a cell and the cell's border in the <see cref="T:System.Web.UI.WebControls.CheckBoxList" /> control.</para>
<para>The padding amount specified is added to all four sides of a cell with the height of the tallest cell and width of the widest cell in the <see cref="T:System.Web.UI.WebControls.CheckBoxList" /> control. The resulting cell size is applied uniformly to all cells in the <see cref="T:System.Web.UI.WebControls.CheckBoxList" /> control.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets or sets the distance (in pixels) between the border and contents of the cell.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName>System.ComponentModel.DefaultValue(-1)</AttributeName>
</Attribute>
</Attributes>
</Member>
<Member MemberName="CellSpacing">
<MemberSignature Language="C#" Value="public virtual int CellSpacing { set; get; }" />
<MemberType>Property</MemberType>
<ReturnValue>
<ReturnType>System.Int32</ReturnType>
</ReturnValue>
<Parameters />
<Docs>
<value>To be added: an object of type 'int'</value>
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Use this property to control the spacing between individual cells in the <see cref="T:System.Web.UI.WebControls.CheckBoxList" /> control. This property is applied both vertically and horizontally.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets or sets the distance (in pixels) between cells.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName>System.ComponentModel.DefaultValue(-1)</AttributeName>
</Attribute>
</Attributes>
</Member>
<Member MemberName="CreateControlStyle">
<MemberSignature Language="C#" Value="protected override System.Web.UI.WebControls.Style CreateControlStyle ();" />
<MemberType>Method</MemberType>
<ReturnValue>
<ReturnType>System.Web.UI.WebControls.Style</ReturnType>
</ReturnValue>
<Parameters />
<Docs>
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The <see cref="M:System.Web.UI.WebControls.CheckBoxList.CreateControlStyle" /> method is used primarily by control developers in custom controls that derive from the <see cref="T:System.Web.UI.WebControls.CheckBoxList" /> class.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Creates a style object that is used internally by the <see cref="T:System.Web.UI.WebControls.CheckBoxList" /> control to implement all style related properties.</para>
</summary>
<returns>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>A <see cref="T:System.Web.UI.WebControls.Style" /> that contains the style properties of the control.</para>
</returns>
</Docs>
<AssemblyInfo>
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="FindControl">
<MemberSignature Language="C#" Value="protected override System.Web.UI.Control FindControl (string id, int pathOffset);" />
<MemberType>Method</MemberType>
<ReturnValue>
<ReturnType>System.Web.UI.Control</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="id" Type="System.String" />
<Parameter Name="pathOffset" Type="System.Int32" />
</Parameters>
<Docs>
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The <see cref="M:System.Web.UI.WebControls.CheckBoxList.FindControl(System.String,System.Int32)" /> method is used primarily by control developers in custom controls that derive from the <see cref="T:System.Web.UI.WebControls.CheckBoxList" /> class.</para>
<para>The <see cref="M:System.Web.UI.WebControls.CheckBoxList.FindControl(System.String,System.Int32)" /> method overrides the <see cref="M:System.Web.UI.Control.FindControl(System.String,System.Int32)" /> method of the base <see cref="T:System.Web.UI.Control" /> class. You should not override this version of the <see cref="M:System.Web.UI.Control.FindControl(System.String,System.Int32)" /> method.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Searches the current naming container for a server control with the specified ID and path offset. The <see cref="M:System.Web.UI.WebControls.CheckBoxList.FindControl(System.String,System.Int32)" /> method always returns the <see cref="T:System.Web.UI.WebControls.CheckBoxList" /> object. </para>
</summary>
<returns>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The current <see cref="T:System.Web.UI.WebControls.CheckBoxList" />.</para>
</returns>
<param name="id">
<attribution license="cc4" from="Microsoft" modified="false" />The identifier for the control to find.</param>
<param name="pathOffset">
<attribution license="cc4" from="Microsoft" modified="false" />The number of controls up the page control hierarchy needed to reach a naming container. </param>
</Docs>
<AssemblyInfo>
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="GetItemStyle">
<MemberSignature Language="C#" Value="protected virtual System.Web.UI.WebControls.Style GetItemStyle (System.Web.UI.WebControls.ListItemType itemType, int repeatIndex);" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Web.UI.WebControls.Style</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="itemType" Type="System.Web.UI.WebControls.ListItemType" />
<Parameter Name="repeatIndex" Type="System.Int32" />
</Parameters>
<Docs>
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The <see cref="M:System.Web.UI.WebControls.CheckBoxList.GetItemStyle(System.Web.UI.WebControls.ListItemType,System.Int32)" /> method is used primarily by control developers in custom controls that derive from the <see cref="T:System.Web.UI.WebControls.CheckBoxList" /> class.</para>
<para>The style attribute for the <see cref="T:System.Web.UI.WebControls.CheckBoxList" /> control applies to all list items that are contained by the control. Use the <see cref="T:System.Web.UI.WebControls.Style" /> property of the <see cref="T:System.Web.UI.WebControls.CheckBoxList" /> to examine or set the style attribute for the control and its list items.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Retrieves the style of the specified item type at the specified index in the list control.</para>
</summary>
<returns>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>null, indicating that style attributes are not set on individual list items in a <see cref="T:System.Web.UI.WebControls.CheckBoxList" /> control.</para>
</returns>
<param name="itemType">
<attribution license="cc4" from="Microsoft" modified="false" />One of the <see cref="T:System.Web.UI.WebControls.ListItemType" /> enumeration values. </param>
<param name="repeatIndex">
<attribution license="cc4" from="Microsoft" modified="false" />An ordinal index that specifies the location of the item in the list control. </param>
</Docs>
</Member>
<Member MemberName="HasFooter">
<MemberSignature Language="C#" Value="protected virtual bool HasFooter { get; }" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Boolean</ReturnType>
</ReturnValue>
<Docs>
<value>To be added.</value>
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The <see cref="P:System.Web.UI.WebControls.CheckBoxList.HasFooter" /> property is used primarily by control developers in custom controls that derive from the <see cref="T:System.Web.UI.WebControls.CheckBoxList" /> class. Footers are not supported when the <see cref="P:System.Web.UI.WebControls.CheckBoxList.RepeatLayout" /> property is set to <see cref="F:System.Web.UI.WebControls.RepeatLayout.UnorderedList" /> or <see cref="F:System.Web.UI.WebControls.RepeatLayout.OrderedList" />.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets a value indicating whether the <see cref="T:System.Web.UI.WebControls.CheckBoxList" /> control contains a footer section.</para>
</summary>
</Docs>
</Member>
<Member MemberName="HasHeader">
<MemberSignature Language="C#" Value="protected virtual bool HasHeader { get; }" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Boolean</ReturnType>
</ReturnValue>
<Docs>
<value>To be added.</value>
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The <see cref="P:System.Web.UI.WebControls.CheckBoxList.HasHeader" /> property is used primarily by control developers in custom controls that derive from the <see cref="T:System.Web.UI.WebControls.CheckBoxList" /> class. Headers are not supported when the <see cref="P:System.Web.UI.WebControls.CheckBoxList.RepeatLayout" /> property is set to <see cref="F:System.Web.UI.WebControls.RepeatLayout.UnorderedList" /> or <see cref="F:System.Web.UI.WebControls.RepeatLayout.OrderedList" />.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets a value indicating whether the <see cref="T:System.Web.UI.WebControls.CheckBoxList" /> control contains a heading section. </para>
</summary>
</Docs>
</Member>
<Member MemberName="HasSeparators">
<MemberSignature Language="C#" Value="protected virtual bool HasSeparators { get; }" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Boolean</ReturnType>
</ReturnValue>
<Docs>
<value>To be added.</value>
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The <see cref="P:System.Web.UI.WebControls.CheckBoxList.HasSeparators" /> method is used primarily by control developers in custom controls that derive from the <see cref="T:System.Web.UI.WebControls.CheckBoxList" /> class. Separators are not supported when the <see cref="P:System.Web.UI.WebControls.CheckBoxList.RepeatLayout" /> property is set to <see cref="F:System.Web.UI.WebControls.RepeatLayout.UnorderedList" /> or <see cref="F:System.Web.UI.WebControls.RepeatLayout.OrderedList" />.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets a value indicating whether the <see cref="T:System.Web.UI.WebControls.CheckBoxList" /> control contains a separator between items in the list. </para>
</summary>
</Docs>
</Member>
<Member MemberName="LoadPostData">
<MemberSignature Language="C#" Value="protected virtual bool LoadPostData (string postDataKey, System.Collections.Specialized.NameValueCollection postCollection);" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Boolean</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="postDataKey" Type="System.String" />
<Parameter Name="postCollection" Type="System.Collections.Specialized.NameValueCollection" />
</Parameters>
<Docs>
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The <see cref="M:System.Web.UI.WebControls.CheckBoxList.LoadPostData(System.String,System.Collections.Specialized.NameValueCollection)" /> method is used primarily by control developers in custom controls that derive from the <see cref="T:System.Web.UI.WebControls.CheckBoxList" /> class.</para>
<para>The <see cref="M:System.Web.UI.WebControls.CheckBoxList.LoadPostData(System.String,System.Collections.Specialized.NameValueCollection)" /> method indicates whether the state of the <see cref="T:System.Web.UI.WebControls.CheckBoxList" /> control has changed. In other words, it determines whether each list item in the control has the same <see cref="P:System.Web.UI.WebControls.ListItem.Selected" /> value as the last posted value. A user selecting or clearing an item in the control changes the <see cref="P:System.Web.UI.WebControls.ListItem.Selected" /> property value for the corresponding <see cref="T:System.Web.UI.WebControls.ListItem" /> object in the <see cref="P:System.Web.UI.WebControls.ListControl.Items" /> collection of the <see cref="T:System.Web.UI.WebControls.CheckBoxList" /> control. If the same list items are selected in the control, or if the <see cref="T:System.Web.UI.WebControls.CheckBoxList" /> is disabled, <see cref="M:System.Web.UI.WebControls.CheckBoxList.LoadPostData(System.String,System.Collections.Specialized.NameValueCollection)" /> returns false. </para>
<para>When the <see cref="M:System.Web.UI.WebControls.CheckBoxList.LoadPostData(System.String,System.Collections.Specialized.NameValueCollection)" /> method returns true for a control, the page framework invokes the <see cref="M:System.Web.UI.WebControls.CheckBoxList.RaisePostDataChangedEvent" /> method for the control.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Processes the posted data for the <see cref="T:System.Web.UI.WebControls.CheckBoxList" /> control.</para>
</summary>
<returns>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>true if the state of the <see cref="T:System.Web.UI.WebControls.CheckBoxList" /> is different from the last posting; otherwise, false.</para>
</returns>
<param name="postDataKey">
<attribution license="cc4" from="Microsoft" modified="false" />The key identifier for the control, used to index the <see cref="T:System.Collections.Specialized.NameValueCollection" /> specified in the <paramref name="postCollection" /> parameter.</param>
<param name="postCollection">
<attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Collections.Specialized.NameValueCollection" /> that contains value information indexed by control identifiers. </param>
</Docs>
</Member>
<Member MemberName="OnPreRender">
<MemberSignature Language="C#" Value="protected override void OnPreRender (EventArgs e);" />
<MemberType>Method</MemberType>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="e" Type="System.EventArgs" />
</Parameters>
<Docs>
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The <see cref="M:System.Web.UI.WebControls.CheckBoxList.OnPreRender(System.EventArgs)" /> method is used primarily by control developers in custom controls that derive from the <see cref="T:System.Web.UI.WebControls.CheckBoxList" /> class. The <see cref="M:System.Web.UI.WebControls.CheckBoxList.OnPreRender(System.EventArgs)" /> method allows derived classes to handle the <see cref="E:System.Web.UI.Control.PreRender" /> event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para>
<para>The <see cref="M:System.Web.UI.WebControls.CheckBoxList.OnPreRender(System.EventArgs)" /> method performs any necessary prerendering steps prior to saving view state and rendering content for the <see cref="T:System.Web.UI.WebControls.CheckBoxList" />. The individual list items contained in the <see cref="T:System.Web.UI.WebControls.CheckBoxList" /> control are initialized for rendering using the current <see cref="P:System.Web.UI.WebControls.ListControl.AutoPostBack" />, <see cref="P:System.Web.UI.WebControls.ListControl.CausesValidation" />, and <see cref="P:System.Web.UI.WebControls.ListControl.ValidationGroup" /> values.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Configures the <see cref="T:System.Web.UI.WebControls.CheckBoxList" /> control prior to rendering on the client.</para>
</summary>
<param name="e">
<attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.EventArgs" /> that contains the event data.</param>
</Docs>
<AssemblyInfo>
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="RaisePostDataChangedEvent">
<MemberSignature Language="C#" Value="protected virtual void RaisePostDataChangedEvent ();" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters />
<Docs>
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The <see cref="M:System.Web.UI.WebControls.CheckBoxList.RaisePostDataChangedEvent" /> method is used primarily by control developers in custom controls that derive from the <see cref="T:System.Web.UI.WebControls.CheckBoxList" /> class.</para>
<para>The page framework calls the <see cref="M:System.Web.UI.WebControls.CheckBoxList.RaisePostDataChangedEvent" /> method on a <see cref="T:System.Web.UI.WebControls.CheckBoxList" /> control when the <see cref="M:System.Web.UI.WebControls.CheckBoxList.LoadPostData(System.String,System.Collections.Specialized.NameValueCollection)" /> method indicates that the state of the list items have changed in the <see cref="T:System.Web.UI.WebControls.CheckBoxList" /> control. The <see cref="M:System.Web.UI.WebControls.CheckBoxList.RaisePostDataChangedEvent" /> method calls the <see cref="M:System.Web.UI.WebControls.ListControl.OnSelectedIndexChanged(System.EventArgs)" /> method to raise the <see cref="E:System.Web.UI.WebControls.ListControl.SelectedIndexChanged" /> event. Control developers can override the <see cref="M:System.Web.UI.WebControls.ListControl.OnSelectedIndexChanged(System.EventArgs)" /> method to perform custom processing when the user selects or clears list items in the control.</para>
<para>The <see cref="M:System.Web.UI.IPostBackDataHandler.RaisePostDataChangedEvent" /> method can optionally perform validation before raising the <see cref="E:System.Web.UI.WebControls.ListControl.SelectedIndexChanged" /> event for the control. To validate a group of controls on the page when a list item within the <see cref="T:System.Web.UI.WebControls.CheckBoxList" /> is selected, set the <see cref="P:System.Web.UI.WebControls.ListControl.AutoPostBack" /> and <see cref="P:System.Web.UI.WebControls.ListControl.CausesValidation" /> properties to true, and specify the group of controls to validate in the <see cref="P:System.Web.UI.WebControls.ListControl.ValidationGroup" /> property.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Notifies the ASP.NET application that the state of the <see cref="T:System.Web.UI.WebControls.CheckBoxList" /> control has changed.</para>
</summary>
</Docs>
</Member>
<Member MemberName="Render">
<MemberSignature Language="C#" Value="protected override void Render (System.Web.UI.HtmlTextWriter writer);" />
<MemberType>Method</MemberType>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="writer" Type="System.Web.UI.HtmlTextWriter" />
</Parameters>
<Docs>
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The <see cref="M:System.Web.UI.WebControls.CheckBoxList.Render(System.Web.UI.HtmlTextWriter)" /> method is used primarily by control developers in custom controls that derive from the <see cref="T:System.Web.UI.WebControls.CheckBoxList" /> class.</para>
<para>The <see cref="M:System.Web.UI.WebControls.CheckBoxList.Render(System.Web.UI.HtmlTextWriter)" /> implementation for a <see cref="T:System.Web.UI.WebControls.CheckBoxList" /> control initializes a <see cref="T:System.Web.UI.WebControls.RepeatInfo" /> object for the list, and calls the <see cref="M:System.Web.UI.WebControls.RepeatInfo.RenderRepeater(System.Web.UI.HtmlTextWriter,System.Web.UI.WebControls.IRepeatInfoUser,System.Web.UI.WebControls.Style,System.Web.UI.WebControls.WebControl)" /> method, which in turn uses the <see cref="M:System.Web.UI.WebControls.CheckBoxList.RenderItem(System.Web.UI.WebControls.ListItemType,System.Int32,System.Web.UI.WebControls.RepeatInfo,System.Web.UI.HtmlTextWriter)" /> method to render individual check box list items.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Displays the <see cref="T:System.Web.UI.WebControls.CheckBoxList" /> on the client.</para>
</summary>
<param name="writer">
<attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Web.UI.HtmlTextWriter" /> that contains the output stream for rendering on the client. </param>
</Docs>
<AssemblyInfo>
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="RenderItem">
<MemberSignature Language="C#" Value="protected virtual void RenderItem (System.Web.UI.WebControls.ListItemType itemType, int repeatIndex, System.Web.UI.WebControls.RepeatInfo repeatInfo, System.Web.UI.HtmlTextWriter writer);" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="itemType" Type="System.Web.UI.WebControls.ListItemType" />
<Parameter Name="repeatIndex" Type="System.Int32" />
<Parameter Name="repeatInfo" Type="System.Web.UI.WebControls.RepeatInfo" />
<Parameter Name="writer" Type="System.Web.UI.HtmlTextWriter" />
</Parameters>
<Docs>
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>This method is used primarily by control developers in custom controls that derive from the <see cref="T:System.Web.UI.WebControls.CheckBoxList" /> class.</para>
<para>The <see cref="M:System.Web.UI.WebControls.CheckBoxList.Render(System.Web.UI.HtmlTextWriter)" /> implementation for a <see cref="T:System.Web.UI.WebControls.CheckBoxList" /> control calls the <see cref="M:System.Web.UI.WebControls.RepeatInfo.RenderRepeater(System.Web.UI.HtmlTextWriter,System.Web.UI.WebControls.IRepeatInfoUser,System.Web.UI.WebControls.Style,System.Web.UI.WebControls.WebControl)" /> method, which in turn uses the <see cref="M:System.Web.UI.WebControls.CheckBoxList.RenderItem(System.Web.UI.WebControls.ListItemType,System.Int32,System.Web.UI.WebControls.RepeatInfo,System.Web.UI.HtmlTextWriter)" /> method to render individual checkbox list items. </para>
<para>The <see cref="M:System.Web.UI.WebControls.CheckBoxList.RenderItem(System.Web.UI.WebControls.ListItemType,System.Int32,System.Web.UI.WebControls.RepeatInfo,System.Web.UI.HtmlTextWriter)" /> method for a <see cref="T:System.Web.UI.WebControls.CheckBoxList" /> control ignores the <paramref name="itemType" /> and <paramref name="repeatInfo" /> parameters. The <paramref name="repeatIndex" /> value is used to select the checkbox list item in the <see cref="P:System.Web.UI.WebControls.ListControl.Items" /> collection, and the selected list item is rendered to the output stream.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Renders a list item in the <see cref="T:System.Web.UI.WebControls.CheckBoxList" /> control.</para>
</summary>
<param name="itemType">
<attribution license="cc4" from="Microsoft" modified="false" />One of the <see cref="T:System.Web.UI.WebControls.ListItemType" /> enumeration values. </param>
<param name="repeatIndex">
<attribution license="cc4" from="Microsoft" modified="false" />An ordinal index that specifies the location of the item in the list control. </param>
<param name="repeatInfo">
<attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Web.UI.WebControls.RepeatInfo" /> object that represents the information used to render the item in the list. </param>
<param name="writer">
<attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.Web.UI.HtmlTextWriter" /> object that represents the output stream to render HTML content on the client. </param>
</Docs>
</Member>
<Member MemberName="RepeatColumns">
<MemberSignature Language="C#" Value="public virtual int RepeatColumns { set; get; }" />
<MemberType>Property</MemberType>
<ReturnValue>
<ReturnType>System.Int32</ReturnType>
</ReturnValue>
<Parameters />
<Docs>
<value>To be added: an object of type 'int'</value>
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>When the <see cref="P:System.Web.UI.WebControls.CheckBoxList.RepeatLayout" /> property is set to <see cref="F:System.Web.UI.WebControls.RepeatLayout.Table" />, you can use this property to specify the number of columns that display in the <see cref="T:System.Web.UI.WebControls.CheckBoxList" /> control. If this property is not set, the <see cref="T:System.Web.UI.WebControls.CheckBoxList" /> control displays all list items in a single column.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets or sets the number of columns to display in the <see cref="T:System.Web.UI.WebControls.CheckBoxList" /> control.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName>System.ComponentModel.DefaultValue(0)</AttributeName>
</Attribute>
</Attributes>
</Member>
<Member MemberName="RepeatDirection">
<MemberSignature Language="C#" Value="public virtual System.Web.UI.WebControls.RepeatDirection RepeatDirection { set; get; }" />
<MemberType>Property</MemberType>
<ReturnValue>
<ReturnType>System.Web.UI.WebControls.RepeatDirection</ReturnType>
</ReturnValue>
<Parameters />
<Docs>
<value>To be added: an object of type 'RepeatDirection'</value>
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Use this property to specify the display direction of the <see cref="T:System.Web.UI.WebControls.CheckBoxList" /> control.</para>
<block subset="none" type="note">
<para>The number of columns that are displayed is always determined by the <see cref="P:System.Web.UI.WebControls.CheckBoxList.RepeatColumns" /> property.</para>
</block>
<para>If this property is set to RepeatDirection.Vertical and if the <see cref="P:System.Web.UI.WebControls.CheckBoxList.RepeatLayout" /> property is set to <see cref="F:System.Web.UI.WebControls.RepeatLayout.Table" />, the first column is filled from top to bottom, then the next column, and so on until all items are rendered. For example, if the <see cref="P:System.Web.UI.WebControls.CheckBoxList.RepeatColumns" /> property is set to 3, the items in the <see cref="T:System.Web.UI.WebControls.CheckBoxList" /> control are displayed in three columns, as in the following table.</para>
<list type="table">
<item>
<term>
<para>1 </para>
</term>
<description>
<para>4 </para>
</description>
<description>
<para>7 </para>
</description>
</item>
<item>
<term>
<para>2 </para>
</term>
<description>
<para>5 </para>
</description>
<description>
<para>8 </para>
</description>
</item>
<item>
<term>
<para>3 </para>
</term>
<description>
<para>6 </para>
</description>
<description>
<para>9</para>
</description>
</item>
</list>
<para>If this property is set to RepeatDirection.Horizontal and if the <see cref="P:System.Web.UI.WebControls.CheckBoxList.RepeatLayout" /> property is set to <see cref="F:System.Web.UI.WebControls.RepeatLayout.Table" />, the first column is filled from top to bottom, then the next column, and so on until all items are rendered. For example, if the <see cref="P:System.Web.UI.WebControls.CheckBoxList.RepeatColumns" /> property is set to 3, the items of the <see cref="T:System.Web.UI.WebControls.CheckBoxList" /> control are displayed in rows of three items each, as in the following table.</para>
<list type="table">
<item>
<term>
<para>1 </para>
</term>
<description>
<para>2 </para>
</description>
<description>
<para>3 </para>
</description>
</item>
<item>
<term>
<para>4 </para>
</term>
<description>
<para>5 </para>
</description>
<description>
<para>6 </para>
</description>
</item>
<item>
<term>
<para>7 </para>
</term>
<description>
<para>8 </para>
</description>
<description>
<para>9</para>
</description>
</item>
</list>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets or sets a value that indicates whether the control displays vertically or horizontally.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName>System.ComponentModel.DefaultValue(System.Web.UI.WebControls.RepeatDirection.Vertical)</AttributeName>
</Attribute>
</Attributes>
</Member>
<Member MemberName="RepeatedItemCount">
<MemberSignature Language="C#" Value="protected virtual int RepeatedItemCount { get; }" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Int32</ReturnType>
</ReturnValue>
<Docs>
<value>To be added.</value>
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The <see cref="P:System.Web.UI.WebControls.CheckBoxList.RepeatedItemCount" /> property is used primarily by control developers in custom controls that derive from the <see cref="T:System.Web.UI.WebControls.CheckBoxList" /> class.</para>
<para>If there are no items set in the <see cref="T:System.Web.UI.WebControls.CheckBoxList" />, the <see cref="P:System.Web.UI.WebControls.CheckBoxList.RepeatedItemCount" /> is zero. If there are items set in the <see cref="T:System.Web.UI.WebControls.CheckBoxList" />, the <see cref="P:System.Web.UI.WebControls.CheckBoxList.RepeatedItemCount" /> is the same as the <see cref="P:System.Web.UI.WebControls.ListItemCollection.Count" /> property on the <see cref="P:System.Web.UI.WebControls.ListControl.Items" /> collection.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets the number of list items in the <see cref="T:System.Web.UI.WebControls.CheckBoxList" /> control. </para>
</summary>
</Docs>
</Member>
<Member MemberName="RepeatLayout">
<MemberSignature Language="C#" Value="public virtual System.Web.UI.WebControls.RepeatLayout RepeatLayout { set; get; }" />
<MemberType>Property</MemberType>
<ReturnValue>
<ReturnType>System.Web.UI.WebControls.RepeatLayout</ReturnType>
</ReturnValue>
<Parameters />
<Docs>
<value>To be added: an object of type 'RepeatLayout'</value>
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>For information about the available options, see the <see cref="T:System.Web.UI.WebControls.RepeatLayout" /> enumeration. </para>
<block subset="none" type="note">
<para>Two options are new as of ASP.NET 4: <see cref="F:System.Web.UI.WebControls.RepeatLayout.OrderedList" /> and <see cref="F:System.Web.UI.WebControls.RepeatLayout.UnorderedList" />.</para>
</block>
<para>Some <see cref="P:System.Web.UI.WebControls.CheckBoxList.RepeatLayout" /> settings do not allow horizontal layout. For more information, see the <see cref="T:System.Web.UI.WebControls.RepeatLayout" /> enumeration.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets or sets a value that specifies whether the list will be rendered by using a table element, a ul element, an ol element, or a span element.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName>System.ComponentModel.DefaultValue(System.Web.UI.WebControls.RepeatLayout.Table)</AttributeName>
</Attribute>
</Attributes>
</Member>
<Member MemberName="System.Web.UI.IPostBackDataHandler.LoadPostData">
<MemberSignature Language="C#" Value="bool IPostBackDataHandler.LoadPostData (string postDataKey, System.Collections.Specialized.NameValueCollection postCollection);" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Boolean</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="postDataKey" Type="System.String" />
<Parameter Name="postCollection" Type="System.Collections.Specialized.NameValueCollection" />
</Parameters>
<Docs>
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Typically, you should use the <see cref="M:System.Web.UI.WebControls.CheckBoxList.LoadPostData(System.String,System.Collections.Specialized.NameValueCollection)" /> method to process posted data for a <see cref="T:System.Web.UI.WebControls.CheckBoxList" /> object. </para>
<para>The <see cref="M:System.Web.UI.WebControls.CheckBoxList.System#Web#UI#IPostBackDataHandler#LoadPostData(System.String,System.Collections.Specialized.NameValueCollection)" /> method is an explicit interface member implementation. It can be used only when the <see cref="T:System.Web.UI.WebControls.CheckBoxList" /> instance is cast to an <see cref="T:System.Web.UI.IPostBackDataHandler" /> interface.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Processes posted data for the <see cref="T:System.Web.UI.WebControls.CheckBoxList" /> control.</para>
</summary>
<returns>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>true if the server control's state changes as a result of the postback; otherwise, false.</para>
</returns>
<param name="postDataKey">
<attribution license="cc4" from="Microsoft" modified="false" />The key identifier for the control, used to index the <paramref name="postCollection" />.</param>
<param name="postCollection">
<attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Collections.Specialized.NameValueCollection" /> object that contains value information indexed by control identifiers. </param>
</Docs>
</Member>
<Member MemberName="System.Web.UI.IPostBackDataHandler.RaisePostDataChangedEvent">
<MemberSignature Language="C#" Value="void IPostBackDataHandler.RaisePostDataChangedEvent ();" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters />
<Docs>
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Typically, you should use the <see cref="M:System.Web.UI.WebControls.CheckBoxList.RaisePostDataChangedEvent" /> method to raise an event when the posted data for a <see cref="T:System.Web.UI.WebControls.CheckBoxList" /> object changes. </para>
<para>The <see cref="M:System.Web.UI.WebControls.CheckBoxList.System#Web#UI#IPostBackDataHandler#RaisePostDataChangedEvent" /> method is an explicit interface member implementation. It can be used only when the <see cref="T:System.Web.UI.WebControls.CheckBoxList" /> instance is cast to an <see cref="T:System.Web.UI.IPostBackDataHandler" /> interface.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Raised when posted data for a control has changed.</para>
</summary>
</Docs>
</Member>
<Member MemberName="System.Web.UI.WebControls.IRepeatInfoUser.GetItemStyle">
<MemberSignature Language="C#" Value="System.Web.UI.WebControls.Style IRepeatInfoUser.GetItemStyle (System.Web.UI.WebControls.ListItemType itemType, int repeatIndex);" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Web.UI.WebControls.Style</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="itemType" Type="System.Web.UI.WebControls.ListItemType" />
<Parameter Name="repeatIndex" Type="System.Int32" />
</Parameters>
<Docs>
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Typically, you should use the <see cref="M:System.Web.UI.WebControls.CheckBoxList.GetItemStyle(System.Web.UI.WebControls.ListItemType,System.Int32)" /> method to retrieve the style of an item in a <see cref="T:System.Web.UI.WebControls.CheckBoxList" /> object. </para>
<para>The <see cref="M:System.Web.UI.WebControls.CheckBoxList.System#Web#UI#WebControls#IRepeatInfoUser#GetItemStyle(System.Web.UI.WebControls.ListItemType,System.Int32)" /> method is an explicit interface member implementation. It can be used only when the <see cref="T:System.Web.UI.WebControls.CheckBoxList" /> instance is cast to an <see cref="T:System.Web.UI.WebControls.IRepeatInfoUser" /> interface.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>For a description of this member, see <see cref="M:System.Web.UI.WebControls.IRepeatInfoUser.GetItemStyle(System.Web.UI.WebControls.ListItemType,System.Int32)" />. </para>
</summary>
<returns>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>A <see cref="T:System.Web.UI.WebControls.Style" /> object that represents the style of the specified item type at the specified index in the list control.</para>
</returns>
<param name="itemType">
<attribution license="cc4" from="Microsoft" modified="false" />One of the <see cref="T:System.Web.UI.WebControls.ListItemType" /> enumeration values. </param>
<param name="repeatIndex">
<attribution license="cc4" from="Microsoft" modified="false" />An ordinal index that specifies the location of the item in the list control. </param>
</Docs>
</Member>
<Member MemberName="System.Web.UI.WebControls.IRepeatInfoUser.HasFooter">
<MemberSignature Language="C#" Value="bool System.Web.UI.WebControls.IRepeatInfoUser.HasFooter { get; }" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Boolean</ReturnType>
</ReturnValue>
<Docs>
<value>To be added.</value>
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Typically, you should use the <see cref="P:System.Web.UI.WebControls.CheckBoxList.HasFooter" /> property to determine if a <see cref="T:System.Web.UI.WebControls.CheckBoxList" /> object contains a footer section. </para>
<para>The <see cref="P:System.Web.UI.WebControls.CheckBoxList.System#Web#UI#WebControls#IRepeatInfoUser#HasFooter" /> member is an explicit interface member implementation. It can be used only when the <see cref="T:System.Web.UI.WebControls.CheckBoxList" /> instance is cast to an <see cref="T:System.Web.UI.WebControls.IRepeatInfoUser" /> interface.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets a value that indicates whether the list control contains a footer section.</para>
</summary>
</Docs>
</Member>
<Member MemberName="System.Web.UI.WebControls.IRepeatInfoUser.HasHeader">
<MemberSignature Language="C#" Value="bool System.Web.UI.WebControls.IRepeatInfoUser.HasHeader { get; }" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Boolean</ReturnType>
</ReturnValue>
<Docs>
<value>To be added.</value>
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Typically, you should use the <see cref="P:System.Web.UI.WebControls.CheckBoxList.HasHeader" /> property to determine a <see cref="T:System.Web.UI.WebControls.CheckBoxList" /> object contains a heading section. </para>
<para>The <see cref="P:System.Web.UI.WebControls.CheckBoxList.System#Web#UI#WebControls#IRepeatInfoUser#HasHeader" /> member is an explicit interface member implementation. It can be used only when the <see cref="T:System.Web.UI.WebControls.CheckBoxList" /> instance is cast to an <see cref="T:System.Web.UI.WebControls.IRepeatInfoUser" /> interface.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets a value that indicates whether the list control contains a heading section.</para>
</summary>
</Docs>
</Member>
<Member MemberName="System.Web.UI.WebControls.IRepeatInfoUser.HasSeparators">
<MemberSignature Language="C#" Value="bool System.Web.UI.WebControls.IRepeatInfoUser.HasSeparators { get; }" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Boolean</ReturnType>
</ReturnValue>
<Docs>
<value>To be added.</value>
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Typically, you should use the <see cref="P:System.Web.UI.WebControls.CheckBoxList.HasSeparators" /> property to determine whether a <see cref="T:System.Web.UI.WebControls.CheckBoxList" /> object contains a separator. </para>
<para>The <see cref="P:System.Web.UI.WebControls.CheckBoxList.System#Web#UI#WebControls#IRepeatInfoUser#HasSeparators" /> member is an explicit interface member implementation. It can be used only when the <see cref="T:System.Web.UI.WebControls.CheckBoxList" /> instance is cast to an <see cref="T:System.Web.UI.WebControls.IRepeatInfoUser" /> interface.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets a value that indicates whether the list control contains a separator between items in the list.</para>
</summary>
</Docs>
</Member>
<Member MemberName="System.Web.UI.WebControls.IRepeatInfoUser.RenderItem">
<MemberSignature Language="C#" Value="void IRepeatInfoUser.RenderItem (System.Web.UI.WebControls.ListItemType itemType, int repeatIndex, System.Web.UI.WebControls.RepeatInfo repeatInfo, System.Web.UI.HtmlTextWriter writer);" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="itemType" Type="System.Web.UI.WebControls.ListItemType" />
<Parameter Name="repeatIndex" Type="System.Int32" />
<Parameter Name="repeatInfo" Type="System.Web.UI.WebControls.RepeatInfo" />
<Parameter Name="writer" Type="System.Web.UI.HtmlTextWriter" />
</Parameters>
<Docs>
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Typically, you should use the <see cref="M:System.Web.UI.WebControls.CheckBoxList.RenderItem(System.Web.UI.WebControls.ListItemType,System.Int32,System.Web.UI.WebControls.RepeatInfo,System.Web.UI.HtmlTextWriter)" /> method to render items in a <see cref="T:System.Web.UI.WebControls.CheckBoxList" /> object.</para>
<para>The <see cref="M:System.Web.UI.WebControls.CheckBoxList.System#Web#UI#WebControls#IRepeatInfoUser#RenderItem(System.Web.UI.WebControls.ListItemType,System.Int32,System.Web.UI.WebControls.RepeatInfo,System.Web.UI.HtmlTextWriter)" /> method is an explicit interface member implementation. It can be used only when the <see cref="T:System.Web.UI.WebControls.CheckBoxList" /> instance is cast to an <see cref="T:System.Web.UI.WebControls.IRepeatInfoUser" /> interface.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>For a description of this member, see <see cref="M:System.Web.UI.WebControls.IRepeatInfoUser.RenderItem(System.Web.UI.WebControls.ListItemType,System.Int32,System.Web.UI.WebControls.RepeatInfo,System.Web.UI.HtmlTextWriter)" />. </para>
</summary>
<param name="itemType">
<attribution license="cc4" from="Microsoft" modified="false" />One of the <see cref="T:System.Web.UI.WebControls.ListItemType" /> enumeration values. </param>
<param name="repeatIndex">
<attribution license="cc4" from="Microsoft" modified="false" />An ordinal index that specifies the location of the item in the list control. </param>
<param name="repeatInfo">
<attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Web.UI.WebControls.RepeatInfo" /> object that represents the information used to render the item in the list. </param>
<param name="writer">
<attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.Web.UI.HtmlTextWriter" /> object that represents the output stream to render HTML content on the client. </param>
</Docs>
</Member>
<Member MemberName="System.Web.UI.WebControls.IRepeatInfoUser.RepeatedItemCount">
<MemberSignature Language="C#" Value="int System.Web.UI.WebControls.IRepeatInfoUser.RepeatedItemCount { get; }" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Int32</ReturnType>
</ReturnValue>
<Docs>
<value>To be added.</value>
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Typically, you should use the <see cref="P:System.Web.UI.WebControls.CheckBoxList.RepeatedItemCount" /> property to determine the number of items in a <see cref="T:System.Web.UI.WebControls.CheckBoxList" /> object. </para>
<para>The <see cref="P:System.Web.UI.WebControls.CheckBoxList.System#Web#UI#WebControls#IRepeatInfoUser#RepeatedItemCount" /> member is an explicit interface member implementation. It can be used only when the <see cref="T:System.Web.UI.WebControls.CheckBoxList" /> instance is cast to an <see cref="T:System.Web.UI.WebControls.IRepeatInfoUser" /> interface.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets the number of items in the list control.</para>
</summary>
</Docs>
</Member>
<Member MemberName="TextAlign">
<MemberSignature Language="C#" Value="public virtual System.Web.UI.WebControls.TextAlign TextAlign { set; get; }" />
<MemberType>Property</MemberType>
<ReturnValue>
<ReturnType>System.Web.UI.WebControls.TextAlign</ReturnType>
</ReturnValue>
<Parameters />
<Docs>
<value>To be added: an object of type 'TextAlign'</value>
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Use this property to specify whether the text associated with the check boxes appears on the left or right of the check box. If this property is set to TextAlign.Right, the text is displayed to the right of the check box. If this property is set to TextAlign.Left, the text is displayed to the left of the check box.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets or sets the text alignment for the check boxes within the group.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>1.0.5000.0</AssemblyVersion>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName>System.ComponentModel.DefaultValue(System.Web.UI.WebControls.TextAlign.Right)</AttributeName>
</Attribute>
</Attributes>
</Member>
<Member MemberName="VerifyMultiSelect">
<MemberSignature Language="C#" Value="protected override void VerifyMultiSelect ();" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters />
<Docs>
<summary>To be added.</summary>
<remarks>To be added.</remarks>
</Docs>
</Member>
</Members>
</Type>
|