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 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083
|
<?xml version="1.0" encoding="utf-8"?>
<Type Name="BulletedList" FullName="System.Web.UI.WebControls.BulletedList">
<TypeSignature Language="C#" Value="public class BulletedList : System.Web.UI.WebControls.ListControl, System.Web.UI.IPostBackEventHandler" />
<AssemblyInfo>
<AssemblyName>System.Web</AssemblyName>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Base>
<BaseTypeName>System.Web.UI.WebControls.ListControl</BaseTypeName>
</Base>
<Interfaces>
<Interface>
<InterfaceName>System.Web.UI.IPostBackEventHandler</InterfaceName>
</Interface>
</Interfaces>
<Attributes>
<Attribute>
<AttributeName>System.Web.UI.SupportsEventValidation</AttributeName>
</Attribute>
<Attribute>
<AttributeName>System.ComponentModel.DefaultProperty("BulletStyle")</AttributeName>
</Attribute>
<Attribute>
<AttributeName>System.ComponentModel.DefaultEvent("Click")</AttributeName>
</Attribute>
<Attribute>
<AttributeName>System.ComponentModel.Designer("System.Web.UI.Design.WebControls.BulletedListDesigner, System.Design, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "System.ComponentModel.Design.IDesigner")</AttributeName>
</Attribute>
</Attributes>
<Docs>
<since version=".NET 2.0" />
<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="#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>Use the <see cref="T:System.Web.UI.WebControls.BulletedList" /> control to create a list of items that are formatted with bullets. To specify the individual list items that you want to appear in a <see cref="T:System.Web.UI.WebControls.BulletedList" /> control, place a <see cref="T:System.Web.UI.WebControls.ListItem" /> object for each entry between the opening and closing tags of the <see cref="T:System.Web.UI.WebControls.BulletedList" /> control.</para>
<para>To specify the bullet type to use to display list items in a <see cref="T:System.Web.UI.WebControls.BulletedList" /> control, set the <see cref="P:System.Web.UI.WebControls.BulletedList.BulletStyle" /> property to one of the bullet types that are defined by the <see cref="T:System.Web.UI.WebControls.BulletStyle" /> enumeration. The following table lists the available bullet styles. </para>
<list type="table">
<listheader>
<item>
<term>
<para>Bullet style </para>
</term>
<description>
<para>Description </para>
</description>
</item>
</listheader>
<item>
<term>
<para>
<see cref="F:System.Web.UI.WebControls.BulletStyle.NotSet" />
</para>
</term>
<description>
<para>Not set. </para>
</description>
</item>
<item>
<term>
<para>
<see cref="F:System.Web.UI.WebControls.BulletStyle.Numbered" />
</para>
</term>
<description>
<para>A number. </para>
</description>
</item>
<item>
<term>
<para>
<see cref="F:System.Web.UI.WebControls.BulletStyle.LowerAlpha" />
</para>
</term>
<description>
<para>A lowercase letter. </para>
</description>
</item>
<item>
<term>
<para>
<see cref="F:System.Web.UI.WebControls.BulletStyle.UpperAlpha" />
</para>
</term>
<description>
<para>An uppercase letter. </para>
</description>
</item>
<item>
<term>
<para>
<see cref="F:System.Web.UI.WebControls.BulletStyle.LowerRoman" />
</para>
</term>
<description>
<para>A lowercase Roman numeral. </para>
</description>
</item>
<item>
<term>
<para>
<see cref="F:System.Web.UI.WebControls.BulletStyle.UpperRoman" /> </para>
</term>
<description>
<para>An uppercase Roman numeral. </para>
</description>
</item>
<item>
<term>
<para>
<see cref="F:System.Web.UI.WebControls.BulletStyle.Disc" />
</para>
</term>
<description>
<para>A filled circle. </para>
</description>
</item>
<item>
<term>
<para>
<see cref="F:System.Web.UI.WebControls.BulletStyle.Circle" />
</para>
</term>
<description>
<para>An empty circle. </para>
</description>
</item>
<item>
<term>
<para>
<see cref="F:System.Web.UI.WebControls.BulletStyle.Square" />
</para>
</term>
<description>
<para>A filled square. </para>
</description>
</item>
<item>
<term>
<para>
<see cref="F:System.Web.UI.WebControls.BulletStyle.CustomImage" />
</para>
</term>
<description>
<para>A custom image. </para>
</description>
</item>
</list>
<para>Use the <see cref="P:System.Web.UI.WebControls.BulletedList.FirstBulletNumber" /> property to specify the value that starts the numbering of list items in an ordered <see cref="T:System.Web.UI.WebControls.BulletedList" /> control. The value that is assigned to the <see cref="P:System.Web.UI.WebControls.BulletedList.FirstBulletNumber" /> property is ignored, if the <see cref="P:System.Web.UI.WebControls.BulletedList.BulletStyle" /> property is set to the <see cref="F:System.Web.UI.WebControls.BulletStyle.Disc" />, <see cref="F:System.Web.UI.WebControls.BulletStyle.Square" />, <see cref="F:System.Web.UI.WebControls.BulletStyle.Circle" />, or <see cref="F:System.Web.UI.WebControls.BulletStyle.CustomImage" /> field. If you set the <see cref="P:System.Web.UI.WebControls.BulletedList.BulletStyle" /> property to the value of <see cref="F:System.Web.UI.WebControls.BulletStyle.CustomImage" /> to specify a custom image for the bullet, you must set the <see cref="P:System.Web.UI.WebControls.BulletedList.BulletImageUrl" /> property also to specify the location of the image file.</para>
<para>To specify the display behavior of the list items in a <see cref="T:System.Web.UI.WebControls.BulletedList" />, set the <see cref="P:System.Web.UI.WebControls.BulletedList.DisplayMode" /> property to one of the values that are defined by the <see cref="T:System.Web.UI.WebControls.BulletedListDisplayMode" /> enumeration. The defined display behaviors are <see cref="F:System.Web.UI.WebControls.BulletedListDisplayMode.Text" />, <see cref="F:System.Web.UI.WebControls.BulletedListDisplayMode.HyperLink" />, and <see cref="F:System.Web.UI.WebControls.BulletedListDisplayMode.LinkButton" />.</para>
<para>When a hyperlink is clicked, it navigates to a URL. Use the <see cref="P:System.Web.UI.WebControls.ListItem.Value" /> property to specify the URL that a hyperlink navigates to. Use the <see cref="P:System.Web.UI.WebControls.BulletedList.Target" /> property to specify the frame or window that displays the Web page that is navigated to when a hyperlink is clicked.</para>
<para>When the <see cref="P:System.Web.UI.WebControls.BulletedList.DisplayMode" /> property is set to <see cref="F:System.Web.UI.WebControls.BulletedListDisplayMode.LinkButton" />, the <see cref="T:System.Web.UI.WebControls.BulletedList" /> control displays list items as links that post back to the server when clicked. To programmatically control the actions that are performed when a link button is clicked, provide an event handler for the <see cref="E:System.Web.UI.WebControls.BulletedList.Click" /> event. Note that the <see cref="P:System.Web.UI.WebControls.BulletedList.SelectedIndex" /> and <see cref="P:System.Web.UI.WebControls.BulletedList.SelectedItem" /> properties are inherited from the <see cref="T:System.Web.UI.WebControls.ListControl" /> class and are not applicable to the <see cref="T:System.Web.UI.WebControls.BulletedList" /> control. Use the event data of the <see cref="T:System.Web.UI.WebControls.BulletedListEventArgs" /> class to determine the index of the link button in a <see cref="T:System.Web.UI.WebControls.BulletedList" /> that was clicked.</para>
<para>The <see cref="T:System.Web.UI.WebControls.BulletedList" /> control also supports data binding. To bind the <see cref="T:System.Web.UI.WebControls.BulletedList" /> to a data source, you can use any of the provided data-binding mechanisms. For more information, see <format type="text/html"><a href="ab7b2846-975b-4057-a948-45527497c742">Binding to Databases</a></format>. </para>
<format type="text/html">
<a href="#Accessibility" />
</format>
<format type="text/html">
<h2>Accessibility</h2>
</format>
<para>The markup rendered by default for this control might not conform to accessibility standards such as the Web Content Accessibility Guidelines 1.0 (WCAG) priority 1 guidelines. For details about accessibility support for this control, see <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:BulletedList
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"
BulletImageUrl="uri"
BulletStyle="<codeFeaturedElement>NotSet</codeFeaturedElement>|Numbered|LowerAlpha|UpperAlpha|LowerRoman|
UpperRoman|Disc|Circle|Square|CustomImage"
CausesValidation="True|<codeFeaturedElement>False</codeFeaturedElement>"
CssClass="string"
DataMember="string"
DataSource="string"
DataSourceID="string"
DataTextField="string"
DataTextFormatString="string"
DataValueField="string"
DisplayMode="<codeFeaturedElement>Text</codeFeaturedElement>|HyperLink|LinkButton"
Enabled="<codeFeaturedElement>True</codeFeaturedElement>|False"
EnableTheming="<codeFeaturedElement>True</codeFeaturedElement>|False"
EnableViewState="<codeFeaturedElement>True</codeFeaturedElement>|False"
FirstBulletNumber="integer"
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"
OnClick="Click event handler"
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"
runat="server"
SkinID="string"
Style="string"
TabIndex="integer"
Target="string|_blank|_parent|_search|_self|<codeFeaturedElement>_top</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:BulletedList></code>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Creates a control that generates a list of items in a bulleted format.</para>
</summary>
</Docs>
<Members>
<Member MemberName=".ctor">
<MemberSignature Language="C#" Value="public BulletedList ();" />
<MemberType>Constructor</MemberType>
<Parameters />
<Docs>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Use the <see cref="M:System.Web.UI.WebControls.BulletedList.#ctor" /> constructor to initialize a new instance of the <see cref="T:System.Web.UI.WebControls.BulletedList" /> 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.BulletedList" /> class.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="AddAttributesToRender">
<MemberSignature Language="C#" Value="protected override void AddAttributesToRender (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>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The <see cref="M:System.Web.UI.WebControls.BulletedList.AddAttributesToRender(System.Web.UI.HtmlTextWriter)" /> method is used primarily by control developers to insert the appropriate attributes and styles into the <see cref="T:System.Web.UI.HtmlTextWriter" /> output stream for a <see cref="T:System.Web.UI.WebControls.BulletedList" /> control. </para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Adds the HTML attributes and styles for a <see cref="T:System.Web.UI.WebControls.BulletedList" /> control to render to the specified <see cref="T:System.Web.UI.HtmlTextWriter" /> object.</para>
</summary>
<param name="writer">
<attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.Web.UI.HtmlTextWriter" /> that represents the output stream to render HTML content on the client. </param>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="AutoPostBack">
<MemberSignature Language="C#" Value="public override bool AutoPostBack { set; get; }" />
<MemberType>Property</MemberType>
<Attributes>
<Attribute>
<AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)</AttributeName>
</Attribute>
<Attribute>
<AttributeName>System.ComponentModel.Browsable(false)</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Boolean</ReturnType>
</ReturnValue>
<Docs>
<value>To be added.</value>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The <see cref="P:System.Web.UI.WebControls.BulletedList.AutoPostBack" /> property is inherited from the <see cref="T:System.Web.UI.WebControls.ListControl" /> class and is not applicable to the <see cref="T:System.Web.UI.WebControls.BulletedList" /> control. Do not assign a value to the <see cref="P:System.Web.UI.WebControls.BulletedList.AutoPostBack" /> property. If you do assign a value to the <see cref="P:System.Web.UI.WebControls.BulletedList.AutoPostBack" />, a <see cref="T:System.NotSupportedException" /> exception is thrown.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets or sets the value of the <see cref="P:System.Web.UI.WebControls.ListControl.AutoPostBack" /> property for the base class.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="BulletImageUrl">
<MemberSignature Language="C#" Value="public virtual string BulletImageUrl { set; get; }" />
<MemberType>Property</MemberType>
<Attributes>
<Attribute>
<AttributeName>System.Web.UI.UrlProperty</AttributeName>
</Attribute>
<Attribute>
<AttributeName>System.ComponentModel.Editor("System.Web.UI.Design.ImageUrlEditor, System.Design, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", "System.Drawing.Design.UITypeEditor, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")</AttributeName>
</Attribute>
<Attribute>
<AttributeName>System.ComponentModel.DefaultValue("")</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Docs>
<value>To be added.</value>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Use the <see cref="P:System.Web.UI.WebControls.BulletedList.BulletImageUrl" /> property to specify the path to an image to display as each bullet in a <see cref="T:System.Web.UI.WebControls.BulletedList" /> control. To specify a custom image for the bullets, you must also set the <see cref="P:System.Web.UI.WebControls.BulletedList.BulletStyle" /> property to the value <see cref="F:System.Web.UI.WebControls.BulletStyle.CustomImage" />.</para>
<block subset="none" type="note">
<para>The <see cref="T:System.Web.UI.WebControls.BulletedList" /> control does not support the <see cref="P:System.Web.UI.WebControls.Image.AlternateText" /> property because the bullets are inherently decorative and do not provide additional information that needs to be conveyed via assistive technology. However, if you want to use a custom image to convey a concept to the user, you should add additional text to each of the bulleted list items or use a control that allows you to specify alternate text for each image.</para>
</block>
<para>You can specify either a relative or an absolute path to the image. A relative path relates the location of the image to the location of the Web page without specifying a complete path on the server. The path is relative to the location of the Web page. This makes it easier to move the entire site to another directory on the server without updating the code. </para>
<para>The following code example shows a relative path to an image file:</para>
<para>[C#]</para>
<code>\\Images\\image1.jpg</code>
<para>[Visual Basic]</para>
<code>"Images\image1.jpg"</code>
<para>The following code example shows an absolute path to an image file:</para>
<para>[C#]</para>
<code>"c:\\MyImagesDir\\image1.jpg" </code>
<para>[Visual Basic]</para>
<code>"c"\MyImagesDir\image1.jpg"</code>
<para>The value of this property is stored in view state.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets or sets the path to an image to display for each bullet in a <see cref="T:System.Web.UI.WebControls.BulletedList" /> control.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="BulletStyle">
<MemberSignature Language="C#" Value="public virtual System.Web.UI.WebControls.BulletStyle BulletStyle { set; get; }" />
<MemberType>Property</MemberType>
<Attributes>
<Attribute>
<AttributeName>System.ComponentModel.DefaultValue(System.Web.UI.WebControls.BulletStyle.NotSet)</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Web.UI.WebControls.BulletStyle</ReturnType>
</ReturnValue>
<Docs>
<value>To be added.</value>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Use the <see cref="T:System.Web.UI.WebControls.BulletStyle" /> property to specify the bullet style to apply to the list items in a <see cref="T:System.Web.UI.WebControls.BulletedList" /> control. The <see cref="T:System.Web.UI.WebControls.BulletStyle" /> property is set using one of the <see cref="T:System.Web.UI.WebControls.BulletStyle" /> enumeration values. The following table lists the possible values.</para>
<list type="table">
<listheader>
<item>
<term>
<para>Bullet style </para>
</term>
<description>
<para>Description </para>
</description>
</item>
</listheader>
<item>
<term>
<para>
<see cref="F:System.Web.UI.WebControls.BulletStyle.NotSet" />
</para>
</term>
<description>
<para>Not set. </para>
</description>
</item>
<item>
<term>
<para>
<see cref="F:System.Web.UI.WebControls.BulletStyle.Numbered" />
</para>
</term>
<description>
<para>A number. </para>
</description>
</item>
<item>
<term>
<para>
<see cref="F:System.Web.UI.WebControls.BulletStyle.LowerAlpha" />
</para>
</term>
<description>
<para>A lowercase letter. </para>
</description>
</item>
<item>
<term>
<para>
<see cref="F:System.Web.UI.WebControls.BulletStyle.UpperAlpha" />
</para>
</term>
<description>
<para>An uppercase letter. </para>
</description>
</item>
<item>
<term>
<para>
<see cref="F:System.Web.UI.WebControls.BulletStyle.LowerRoman" />
</para>
</term>
<description>
<para>A lowercase Roman numeral. </para>
</description>
</item>
<item>
<term>
<para>
<see cref="F:System.Web.UI.WebControls.BulletStyle.UpperRoman" /> </para>
</term>
<description>
<para>An uppercase Roman numeral. </para>
</description>
</item>
<item>
<term>
<para>
<see cref="F:System.Web.UI.WebControls.BulletStyle.Disc" />
</para>
</term>
<description>
<para>A filled circle. </para>
</description>
</item>
<item>
<term>
<para>
<see cref="F:System.Web.UI.WebControls.BulletStyle.Circle" />
</para>
</term>
<description>
<para>An empty circle. </para>
</description>
</item>
<item>
<term>
<para>
<see cref="F:System.Web.UI.WebControls.BulletStyle.Square" />
</para>
</term>
<description>
<para>A filled square. </para>
</description>
</item>
<item>
<term>
<para>
<see cref="F:System.Web.UI.WebControls.BulletStyle.CustomImage" />
</para>
</term>
<description>
<para>A custom image. </para>
</description>
</item>
</list>
<para>Specifying the <see cref="F:System.Web.UI.WebControls.BulletStyle.CustomImage" /> value allows you to supply your own image for the bullet. If you specify the <see cref="F:System.Web.UI.WebControls.BulletStyle.CustomImage" /> value, you must also set the <see cref="P:System.Web.UI.WebControls.BulletedList.BulletImageUrl" /> property to the URL of the custom image to use.</para>
<block subset="none" type="note">
<para>The <see cref="T:System.Web.UI.WebControls.BulletedList" /> control does not support the <see cref="P:System.Web.UI.WebControls.Image.AlternateText" /> property because the bullets are inherently decorative and do not provide additional information that needs to be conveyed via assistive technology. However, if you want to use a custom image to convey a concept to the user, you should add additional text to each of the bulleted list items or use a control that allows you to specify alternate text for each image.</para>
</block>
<para>The value of this property is stored in view state.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets or sets the bullet style for the <see cref="T:System.Web.UI.WebControls.BulletedList" /> control.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="Click">
<MemberSignature Language="C#" Value="public event System.Web.UI.WebControls.BulletedListEventHandler Click;" />
<MemberType>Event</MemberType>
<ReturnValue>
<ReturnType>System.Web.UI.WebControls.BulletedListEventHandler</ReturnType>
</ReturnValue>
<Docs>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The <see cref="E:System.Web.UI.WebControls.BulletedList.Click" /> event is raised when a list item in a <see cref="T:System.Web.UI.WebControls.BulletedList" /> control is clicked. To enable list items in a <see cref="T:System.Web.UI.WebControls.BulletedList" /> control to raise the <see cref="E:System.Web.UI.WebControls.BulletedList.Click" /> event, the <see cref="P:System.Web.UI.WebControls.BulletedList.DisplayMode" /> property first must be set to the value <see cref="F:System.Web.UI.WebControls.BulletedListDisplayMode.LinkButton" />.</para>
<para>Raising an event invokes the event handler through a delegate. For more information about handling events, see <format type="text/html"><a href="01e4f1bc-e55e-413f-98c7-6588493e5f67">Consuming Events</a></format>.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Occurs when a link button in a <see cref="T:System.Web.UI.WebControls.BulletedList" /> control is clicked.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="Controls">
<MemberSignature Language="C#" Value="public override System.Web.UI.ControlCollection Controls { get; }" />
<MemberType>Property</MemberType>
<ReturnValue>
<ReturnType>System.Web.UI.ControlCollection</ReturnType>
</ReturnValue>
<Docs>
<value>To be added.</value>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The <see cref="P:System.Web.UI.WebControls.BulletedList.Controls" /> property is inherited from the <see cref="T:System.Web.UI.Control" /> class and is not applicable to the <see cref="T:System.Web.UI.WebControls.BulletedList" /> control. The <see cref="P:System.Web.UI.WebControls.BulletedList.Controls" /> collection is overridden from the base class to always return the <see cref="T:System.Web.UI.EmptyControlCollection" /> collection.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets a <see cref="T:System.Web.UI.ControlCollection" /> collection for the control.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="DisplayMode">
<MemberSignature Language="C#" Value="public virtual System.Web.UI.WebControls.BulletedListDisplayMode DisplayMode { set; get; }" />
<MemberType>Property</MemberType>
<Attributes>
<Attribute>
<AttributeName>System.ComponentModel.DefaultValue(System.Web.UI.WebControls.BulletedListDisplayMode.Text)</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Web.UI.WebControls.BulletedListDisplayMode</ReturnType>
</ReturnValue>
<Docs>
<value>To be added.</value>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Use the <see cref="P:System.Web.UI.WebControls.BulletedList.DisplayMode" /> property to specify the display behavior to apply to the content of list items in a <see cref="T:System.Web.UI.WebControls.BulletedList" /> control. The <see cref="P:System.Web.UI.WebControls.BulletedList.DisplayMode" /> property is set using one of the <see cref="T:System.Web.UI.WebControls.BulletedListDisplayMode" /> enumeration values. The following table lists the possible values.</para>
<list type="table">
<listheader>
<item>
<term>
<para>Value </para>
</term>
<description>
<para>Displayed as</para>
</description>
</item>
</listheader>
<item>
<term>
<para>
<see cref="F:System.Web.UI.WebControls.BulletedListDisplayMode.Text" />
</para>
</term>
<description>
<para>Text. </para>
</description>
</item>
<item>
<term>
<para>
<see cref="F:System.Web.UI.WebControls.BulletedListDisplayMode.HyperLink" />
</para>
</term>
<description>
<para>Hyperlinks. </para>
</description>
</item>
<item>
<term>
<para>
<see cref="F:System.Web.UI.WebControls.BulletedListDisplayMode.LinkButton" />
</para>
</term>
<description>
<para>Link buttons. </para>
</description>
</item>
</list>
<para>The <see cref="F:System.Web.UI.WebControls.BulletedListDisplayMode.HyperLink" /> value allows you to display list content as hyperlinks. When clicked, a hyperlink navigates to a URL. Use the <see cref="P:System.Web.UI.WebControls.ListItem.Value" /> property to specify the URL that a hyperlink navigates to.</para>
<para>The <see cref="F:System.Web.UI.WebControls.BulletedListDisplayMode.LinkButton" /> field allows you to display list content as links. Use the <see cref="E:System.Web.UI.WebControls.BulletedList.Click" /> event to post back to the server when a link button is clicked.</para>
<para>The value of this property is stored in view state.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets or sets the display mode of the list content in a <see cref="T:System.Web.UI.WebControls.BulletedList" /> control.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="FirstBulletNumber">
<MemberSignature Language="C#" Value="public virtual int FirstBulletNumber { set; get; }" />
<MemberType>Property</MemberType>
<Attributes>
<Attribute>
<AttributeName>System.ComponentModel.DefaultValue(1)</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Int32</ReturnType>
</ReturnValue>
<Docs>
<value>To be added.</value>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Use the <see cref="P:System.Web.UI.WebControls.BulletedList.FirstBulletNumber" /> property to specify the value that starts the numbering of list items in an ordered <see cref="T:System.Web.UI.WebControls.BulletedList" /> control. The value that is assigned to the <see cref="P:System.Web.UI.WebControls.BulletedList.FirstBulletNumber" /> property is ignored, if the <see cref="P:System.Web.UI.WebControls.BulletedList.BulletStyle" /> property is set to the <see cref="F:System.Web.UI.WebControls.BulletStyle.Disc" />, <see cref="F:System.Web.UI.WebControls.BulletStyle.Square" />, <see cref="F:System.Web.UI.WebControls.BulletStyle.Circle" />, or <see cref="F:System.Web.UI.WebControls.BulletStyle.CustomImage" /> values. Although the value of the <see cref="P:System.Web.UI.WebControls.BulletedList.FirstBulletNumber" /> property is an integer, it does not always cause a bullet to render as a number. For example, if you set the <see cref="P:System.Web.UI.WebControls.BulletedList.FirstBulletNumber" /> property to 4 and set the <see cref="P:System.Web.UI.WebControls.BulletedList.BulletStyle" /> property to the value <see cref="F:System.Web.UI.WebControls.BulletStyle.LowerAlpha" />, the first bullet number will render as a lowercase d.</para>
<para>The value of this property is stored in view state.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets or sets the value that starts the numbering of list items in an ordered <see cref="T:System.Web.UI.WebControls.BulletedList" /> control.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="OnClick">
<MemberSignature Language="C#" Value="protected virtual void OnClick (System.Web.UI.WebControls.BulletedListEventArgs e);" />
<MemberType>Method</MemberType>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="e" Type="System.Web.UI.WebControls.BulletedListEventArgs" />
</Parameters>
<Docs>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The <see cref="E:System.Web.UI.WebControls.BulletedList.Click" /> event is raised when a list item in the <see cref="T:System.Web.UI.WebControls.BulletedList" /> control is clicked. To enable list items in a <see cref="T:System.Web.UI.WebControls.BulletedList" /> control to raise the <see cref="E:System.Web.UI.WebControls.BulletedList.Click" /> event, you must first set the <see cref="P:System.Web.UI.WebControls.BulletedList.DisplayMode" /> property to the value <see cref="F:System.Web.UI.WebControls.BulletedListDisplayMode.LinkButton" />.</para>
<para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="01e4f1bc-e55e-413f-98c7-6588493e5f67">Consuming Events</a></format>.</para>
<para>The <see cref="M:System.Web.UI.WebControls.BulletedList.OnClick(System.Web.UI.WebControls.BulletedListEventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Raises the <see cref="E:System.Web.UI.WebControls.BulletedList.Click" /> event for the <see cref="T:System.Web.UI.WebControls.BulletedList" /> control.</para>
</summary>
<param name="e">
<attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Web.UI.WebControls.BulletedListEventArgs" /> that contains the event data. </param>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="RaisePostBackEvent">
<MemberSignature Language="C#" Value="protected virtual void RaisePostBackEvent (string eventArgument);" />
<MemberType>Method</MemberType>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="eventArgument" Type="System.String" />
</Parameters>
<Docs>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The <see cref="M:System.Web.UI.WebControls.BulletedList.RaisePostBackEvent(System.String)" /> method is used internally by the <see cref="T:System.Web.UI.WebControls.BulletedList" /> control when a link button within the item list is clicked. The containing page specifies the index of the clicked link button in the <paramref name="eventArgument" /> parameter, which is used to initialize the <see cref="P:System.Web.UI.WebControls.BulletedListEventArgs.Index" /> property of a <see cref="T:System.Web.UI.WebControls.BulletedListEventArgs" /> object. The <see cref="M:System.Web.UI.WebControls.BulletedList.RaisePostBackEvent(System.String)" /> method raises a <see cref="E:System.Web.UI.WebControls.BulletedList.Click" /> event by passing the initialized <see cref="T:System.Web.UI.WebControls.BulletedListEventArgs" /> object to the <see cref="M:System.Web.UI.WebControls.BulletedList.OnClick(System.Web.UI.WebControls.BulletedListEventArgs)" /> method.</para>
<para>The <see cref="M:System.Web.UI.WebControls.BulletedList.RaisePostBackEvent(System.String)" /> method optionally can perform validation before raising the <see cref="E:System.Web.UI.WebControls.BulletedList.Click" /> event for the control. To validate a group of controls on the page when a link button within the <see cref="T:System.Web.UI.WebControls.BulletedList" /> is clicked, set the <see cref="P:System.Web.UI.WebControls.ListControl.CausesValidation" /> property to true and specify the group of controls to be validated in the <see cref="P:System.Web.UI.WebControls.ListControl.ValidationGroup" /> property. </para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Raises events for the <see cref="T:System.Web.UI.WebControls.BulletedList" /> control when a form is posted back to the server.</para>
</summary>
<param name="eventArgument">
<attribution license="cc4" from="Microsoft" modified="false" />The string representation for the index of the list item that raised the event.</param>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="Render">
<MemberSignature Language="C#" Value="protected override void Render (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="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.BulletedList.Render(System.Web.UI.HtmlTextWriter)" /> method is used primarily by control developers.</para>
<para>The <see cref="M:System.Web.UI.WebControls.BulletedList.Render(System.Web.UI.HtmlTextWriter)" /> method writes the rendered content of the <see cref="T:System.Web.UI.WebControls.BulletedList" /> items to the client using the supplied <see cref="T:System.Web.UI.HtmlTextWriter" /> object. Each <see cref="T:System.Web.UI.WebControls.BulletedList" /> item is represented by an element in the <see cref="P:System.Web.UI.WebControls.ListControl.Items" /> collection.</para>
<para>If the <see cref="P:System.Web.UI.WebControls.ListControl.Items" /> property of the <see cref="T:System.Web.UI.WebControls.BulletedList" /> control is empty, no content is rendered to the <see cref="T:System.Web.UI.HtmlTextWriter" />. If there is at least one list item in the <see cref="P:System.Web.UI.WebControls.ListControl.Items" /> collection, the <see cref="M:System.Web.UI.WebControls.BulletedList.Render(System.Web.UI.HtmlTextWriter)" /> method writes the HTML content for the <see cref="T:System.Web.UI.WebControls.BulletedList" /> control using the <see cref="M:System.Web.UI.WebControls.WebControl.RenderBeginTag(System.Web.UI.HtmlTextWriter)" />, <see cref="M:System.Web.UI.WebControls.BulletedList.RenderContents(System.Web.UI.HtmlTextWriter)" />, and <see cref="M:System.Web.UI.WebControls.WebControl.RenderEndTag(System.Web.UI.HtmlTextWriter)" /> methods.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Writes the <see cref="T:System.Web.UI.WebControls.BulletedList" /> control content to the specified <see cref="T:System.Web.UI.HtmlTextWriter" /> object for display on the client.</para>
</summary>
<param name="writer">
<attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.Web.UI.HtmlTextWriter" /> that represents the output stream to render HTML content on the client.</param>
</Docs>
</Member>
<Member MemberName="RenderBulletText">
<MemberSignature Language="C#" Value="protected virtual void RenderBulletText (System.Web.UI.WebControls.ListItem item, int index, System.Web.UI.HtmlTextWriter writer);" />
<MemberType>Method</MemberType>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="item" Type="System.Web.UI.WebControls.ListItem" />
<Parameter Name="index" Type="System.Int32" />
<Parameter Name="writer" Type="System.Web.UI.HtmlTextWriter" />
</Parameters>
<Docs>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The <see cref="M:System.Web.UI.WebControls.BulletedList.RenderBulletText(System.Web.UI.WebControls.ListItem,System.Int32,System.Web.UI.HtmlTextWriter)" /> method renders the bulleted text for each list item in a <see cref="T:System.Web.UI.WebControls.BulletedList" /> control using the specified <see cref="P:System.Web.UI.WebControls.BulletedList.DisplayMode" /> property.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Renders the bulleted text for each list item in a <see cref="T:System.Web.UI.WebControls.BulletedList" /> control.</para>
</summary>
<param name="item">
<attribution license="cc4" from="Microsoft" modified="false" />A collection of <see cref="T:System.Web.UI.WebControls.ListItem" /> objects in a <see cref="T:System.Web.UI.WebControls.BulletedList" />. </param>
<param name="index">
<attribution license="cc4" from="Microsoft" modified="false" />The zero-based index of the <see cref="T:System.Web.UI.WebControls.ListItem" /> to retrieve from the collection. </param>
<param name="writer">
<attribution license="cc4" from="Microsoft" modified="false" />The output stream that renders HTML content to the client. </param>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="RenderContents">
<MemberSignature Language="C#" Value="protected override void RenderContents (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="writer" Type="System.Web.UI.HtmlTextWriter" />
</Parameters>
<Docs>
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>This method renders the list items of a <see cref="T:System.Web.UI.WebControls.BulletedList" /> control as bullets into the specified <see cref="T:System.Web.UI.HtmlTextWriter" />. This method is used primarily by control developers.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Renders the list items of a <see cref="T:System.Web.UI.WebControls.BulletedList" /> control as bullets into the specified <see cref="T:System.Web.UI.HtmlTextWriter" />.</para>
</summary>
<param name="writer">
<attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.Web.UI.HtmlTextWriter" /> that represents the output stream to render HTML content on the client. </param>
</Docs>
</Member>
<Member MemberName="SelectedIndex">
<MemberSignature Language="C#" Value="public override int SelectedIndex { set; get; }" />
<MemberType>Property</MemberType>
<Attributes>
<Attribute>
<AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)</AttributeName>
</Attribute>
<Attribute>
<AttributeName>System.ComponentModel.Bindable(false)</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Int32</ReturnType>
</ReturnValue>
<Docs>
<value>To be added.</value>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>In the base class, <see cref="T:System.Web.UI.WebControls.ListControl" />, the <see cref="P:System.Web.UI.WebControls.ListControl.SelectedIndex" /> property returns a zero-based index of the currently selected item. The default is -1, which indicates that nothing is selected. The <see cref="P:System.Web.UI.WebControls.BulletedList.SelectedIndex" /> property is not applicable to the <see cref="T:System.Web.UI.WebControls.BulletedList" /> control.</para>
<para>Note When you use the get accessor for the <see cref="P:System.Web.UI.WebControls.BulletedList.SelectedIndex" /> property, it always returns -1. An attempt to use the set accessor for the <see cref="P:System.Web.UI.WebControls.BulletedList.SelectedIndex" /> property raises a <see cref="T:System.NotSupportedException" />.</para>
<para>Use the event data of the <see cref="T:System.Web.UI.WebControls.BulletedListEventArgs" /> class to determine the index of the link button in a <see cref="T:System.Web.UI.WebControls.BulletedList" /> control that was clicked.</para>
<para>This property is not bindable in visual designers, but is bindable at runtime. For more information, see <see cref="T:System.ComponentModel.BindableAttribute" />.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets or sets the zero-based index of the currently selected item in a <see cref="T:System.Web.UI.WebControls.BulletedList" /> control.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="SelectedItem">
<MemberSignature Language="C#" Value="public override System.Web.UI.WebControls.ListItem SelectedItem { get; }" />
<MemberType>Property</MemberType>
<Attributes>
<Attribute>
<AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Web.UI.WebControls.ListItem</ReturnType>
</ReturnValue>
<Docs>
<value>To be added.</value>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>In the base class, <see cref="T:System.Web.UI.WebControls.ListControl" />, the <see cref="P:System.Web.UI.WebControls.ListControl.SelectedItem" /> property returns a <see cref="T:System.Web.UI.WebControls.ListItem" /> object that represents the currently selected item in a <see cref="T:System.Web.UI.WebControls.BulletedList" /> control. The default is null. The <see cref="P:System.Web.UI.WebControls.BulletedList.SelectedItem" /> property is not applicable to the <see cref="T:System.Web.UI.WebControls.BulletedList" /> control.</para>
<block subset="none" type="note">
<para> If you use the get accessor for the <see cref="P:System.Web.UI.WebControls.BulletedList.SelectedItem" /> property to return the selected item for a <see cref="T:System.Web.UI.WebControls.BulletedList" /> control, it always returns null.</para>
</block>
<para>Use the event data of the <see cref="T:System.Web.UI.WebControls.BulletedListEventArgs" /> class to determine the index of the link button in a <see cref="T:System.Web.UI.WebControls.BulletedList" /> that was clicked.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets the currently selected item in a <see cref="T:System.Web.UI.WebControls.BulletedList" /> control.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="SelectedValue">
<MemberSignature Language="C#" Value="public override string SelectedValue { set; get; }" />
<MemberType>Property</MemberType>
<Attributes>
<Attribute>
<AttributeName>System.ComponentModel.Bindable(false)</AttributeName>
</Attribute>
<Attribute>
<AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Docs>
<value>To be added.</value>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The <see cref="P:System.Web.UI.WebControls.BulletedList.SelectedValue" /> property is inherited from the <see cref="T:System.Web.UI.WebControls.ListControl" /> class and is not applicable to the <see cref="T:System.Web.UI.WebControls.BulletedList" /> control.</para>
<block subset="none" type="note">
<para>The <see cref="P:System.Web.UI.WebControls.BulletedList.SelectedValue" /> property is set internally based on the selected list item in the <see cref="T:System.Web.UI.WebControls.BulletedList" /> control. If you set the <see cref="P:System.Web.UI.WebControls.BulletedList.SelectedValue" /> property directly, a <see cref="T:System.NotSupportedException" /> exception is thrown.</para>
</block>
<para>This property is not bindable in visual designers, but is bindable at runtime. For more information, see <see cref="T:System.ComponentModel.BindableAttribute" />.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets or sets the <see cref="P:System.Web.UI.WebControls.ListItem.Value" /> property of the selected <see cref="T:System.Web.UI.WebControls.ListItem" /> object in the <see cref="T:System.Web.UI.WebControls.BulletedList" /> control.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="System.Web.UI.IPostBackEventHandler.RaisePostBackEvent">
<MemberSignature Language="C#" Value="void IPostBackEventHandler.RaisePostBackEvent (string eventArgument);" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="eventArgument" Type="System.String" />
</Parameters>
<Docs>
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>This member is an explicit interface member implementation. It can be used only when the <see cref="T:System.Web.UI.WebControls.BulletedList" /> instance is cast to an <see cref="T:System.Web.UI.IPostBackEventHandler" /> interface.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>For a description of this method, see <see cref="M:System.Web.UI.IPostBackEventHandler.RaisePostBackEvent(System.String)" />.</para>
</summary>
<param name="eventArgument">
<attribution license="cc4" from="Microsoft" modified="false" />A string that represents an optional event argument to pass to the event handler. </param>
</Docs>
</Member>
<Member MemberName="TagKey">
<MemberSignature Language="C#" Value="protected override System.Web.UI.HtmlTextWriterTag TagKey { get; }" />
<MemberType>Property</MemberType>
<ReturnValue>
<ReturnType>System.Web.UI.HtmlTextWriterTag</ReturnType>
</ReturnValue>
<Docs>
<value>To be added.</value>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Use the <see cref="P:System.Web.UI.WebControls.BulletedList.TagKey" /> property to determine the <see cref="T:System.Web.UI.HtmlTextWriterTag" /> value that is associated with the <see cref="T:System.Web.UI.WebControls.BulletedList" /> control. The <see cref="P:System.Web.UI.WebControls.BulletedList.TagKey" /> property is used primarily by control developers.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets the <see cref="T:System.Web.UI.HtmlTextWriterTag" /> value for the specified <see cref="T:System.Web.UI.WebControls.BulletedList" /> control.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="Target">
<MemberSignature Language="C#" Value="public virtual string Target { set; get; }" />
<MemberType>Property</MemberType>
<Attributes>
<Attribute>
<AttributeName>System.ComponentModel.TypeConverter(typeof(System.Web.UI.WebControls.TargetConverter))</AttributeName>
</Attribute>
<Attribute>
<AttributeName>System.ComponentModel.DefaultValue("")</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Docs>
<value>To be added.</value>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Values must begin with a letter in the range of A through Z (case-insensitive), except for the special values that are listed in the following table, which begin with an underscore.</para>
<list type="table">
<listheader>
<item>
<term>
<para>Value </para>
</term>
<description>
<para>Description </para>
</description>
</item>
</listheader>
<item>
<term>
<para>_blank </para>
</term>
<description>
<para>Renders the content in a new window without frames. </para>
</description>
</item>
<item>
<term>
<para>_parent </para>
</term>
<description>
<para>Renders the content in the immediate frame-set parent. </para>
</description>
</item>
<item>
<term>
<para>_search</para>
</term>
<description>
<para>Renders the content in the search pane.</para>
</description>
</item>
<item>
<term>
<para>_self </para>
</term>
<description>
<para>Renders the content in the frame with focus. </para>
</description>
</item>
<item>
<term>
<para>_top </para>
</term>
<description>
<para>Renders the content in the full window without frames. </para>
</description>
</item>
</list>
<block subset="none" type="note">
<para>Check your browser documentation to determine if the _search value is supported. For example, Microsoft Internet Explorer 5.0 and later support the _search target value.</para>
</block>
<para>Use the <see cref="P:System.Web.UI.WebControls.BulletedList.Target" /> property to specify the frame or window that displays the Web page that is linked to when a hyperlink in a <see cref="T:System.Web.UI.WebControls.BulletedList" /> control is clicked. To display the content of the list items as hyperlinks in a <see cref="T:System.Web.UI.WebControls.BulletedList" /> control, set the <see cref="T:System.Web.UI.WebControls.BulletedListDisplayMode" /> property to the value <see cref="F:System.Web.UI.WebControls.BulletedListDisplayMode.HyperLink" />. Then, set the <see cref="P:System.Web.UI.WebControls.ListItem.Value" /> property of each list item to the URL of the Web page to navigate to.</para>
<para>If the <see cref="P:System.Web.UI.WebControls.BulletedList.Target" /> property is not set, the browser or window with focus refreshes when the hyperlink is clicked.</para>
<block subset="none" type="note">
<para> The <see cref="P:System.Web.UI.WebControls.BulletedList.Target" /> property renders as a target attribute. The target attribute on anchor elements is not allowed in the XHTML 1.1 document type definition. Do not set the <see cref="P:System.Web.UI.WebControls.BulletedList.Target" /> property if the rendered output for the <see cref="T:System.Web.UI.WebControls.BulletedList" /> must be XHTML 1.1 compliant. For more information, refer to the topic <format type="text/html"><a href="1b78d416-66bb-43a5-ac77-c703aab55b97">ASP.NET and XHTML Compliance</a></format>. </para>
<para>When creating accessible Web pages, it is strongly recommended you avoid using the <see cref="P:System.Web.UI.WebControls.BulletedList.Target" /> property to target another window. For more information, see <format type="text/html"><a href="7e3ce9c4-6b7d-4fb1-94b5-72cf2a44fe13">ASP.NET Accessibility</a></format>.</para>
</block>
<para>The value of this property is stored in view state.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets or sets the target window or frame in which to display the Web page content that is linked to when a hyperlink in a <see cref="T:System.Web.UI.WebControls.BulletedList" /> control is clicked.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="Text">
<MemberSignature Language="C#" Value="public override string Text { set; get; }" />
<MemberType>Property</MemberType>
<Attributes>
<Attribute>
<AttributeName>System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Docs>
<value>To be added.</value>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The <see cref="P:System.Web.UI.WebControls.BulletedList.Text" /> property is inherited from the <see cref="T:System.Web.UI.WebControls.ListControl" /> class and is not applicable to the <see cref="T:System.Web.UI.WebControls.BulletedList" /> control.</para>
<block subset="none" type="note">
<para>The <see cref="P:System.Web.UI.WebControls.BulletedList.Text" /> property is set internally based on the selected list item in the <see cref="T:System.Web.UI.WebControls.BulletedList" /> control. If you set the <see cref="P:System.Web.UI.WebControls.BulletedList.Text" /> property directly, a <see cref="T:System.NotSupportedException" /> exception is thrown.</para>
</block>
<para>While you cannot access the <see cref="P:System.Web.UI.WebControls.BulletedList.Text" /> property of <see cref="T:System.Web.UI.WebControls.BulletedList" /> control, you can use the event data of the <see cref="T:System.Web.UI.WebControls.BulletedListEventArgs" /> class to determine the index of the link button in a <see cref="T:System.Web.UI.WebControls.BulletedList" /> that was clicked. You can then access the <see cref="P:System.Web.UI.WebControls.LinkButton.Text" /> property of the <see cref="T:System.Web.UI.WebControls.LinkButton" /> control.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets or sets the text for the <see cref="T:System.Web.UI.WebControls.BulletedList" /> control.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
</Members>
</Type>
|