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
|
<?xml version="1.0" encoding="utf-8"?>
<Type Name="HotSpotCollection" FullName="System.Web.UI.WebControls.HotSpotCollection">
<TypeSignature Language="C#" Value="public sealed class HotSpotCollection : System.Web.UI.StateManagedCollection" />
<AssemblyInfo>
<AssemblyName>System.Web</AssemblyName>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Base>
<BaseTypeName>System.Web.UI.StateManagedCollection</BaseTypeName>
</Base>
<Interfaces />
<Attributes>
<Attribute>
<AttributeName>System.ComponentModel.Editor("System.Web.UI.Design.WebControls.HotSpotCollectionEditor, 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>
</Attributes>
<Docs>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The <see cref="T:System.Web.UI.WebControls.HotSpotCollection" /> class represents a collection that enables an <see cref="T:System.Web.UI.WebControls.ImageMap" /> control to maintain a list of the <see cref="T:System.Web.UI.WebControls.HotSpot" /> objects it contains.</para>
<para>Use the <see cref="M:System.Web.UI.WebControls.HotSpotCollection.Add(System.Web.UI.WebControls.HotSpot)" /> method to add a specified <see cref="T:System.Web.UI.WebControls.HotSpot" /> object to the collection at the end of an ordinal index array. Use the <see cref="M:System.Web.UI.WebControls.HotSpotCollection.Insert(System.Int32,System.Web.UI.WebControls.HotSpot)" /> method to add a <see cref="T:System.Web.UI.WebControls.HotSpot" /> object to the collection at a specified index location. Use the <see cref="P:System.Web.UI.WebControls.HotSpotCollection.Item(System.Int32)" /> indexer to directly access a <see cref="T:System.Web.UI.WebControls.HotSpot" /> object in the collection at a specified index, using simple array notation.</para>
<para>Use the <see cref="M:System.Web.UI.WebControls.HotSpotCollection.Remove(System.Web.UI.WebControls.HotSpot)" /> method to remove a <see cref="T:System.Web.UI.WebControls.HotSpot" /> object from the end of the collection. Use the <see cref="M:System.Web.UI.WebControls.HotSpotCollection.RemoveAt(System.Int32)" /> method to remove a <see cref="T:System.Web.UI.WebControls.HotSpot" /> object from a specified index location.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Represents a collection of <see cref="T:System.Web.UI.WebControls.HotSpot" /> objects inside an <see cref="T:System.Web.UI.WebControls.ImageMap" /> control. This class cannot be inherited.</para>
</summary>
</Docs>
<Members>
<Member MemberName=".ctor">
<MemberSignature Language="C#" Value="public HotSpotCollection ();" />
<MemberType>Constructor</MemberType>
<Parameters />
<Docs>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>When overridden in a derived class, this constructor initializes a new instance of the <see cref="T:System.Web.UI.WebControls.HotSpotCollection" /> 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.HotSpotCollection" /> class.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="Add">
<MemberSignature Language="C#" Value="public int Add (System.Web.UI.WebControls.HotSpot spot);" />
<MemberType>Method</MemberType>
<ReturnValue>
<ReturnType>System.Int32</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="spot" Type="System.Web.UI.WebControls.HotSpot" />
</Parameters>
<Docs>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The <see cref="M:System.Web.UI.WebControls.HotSpotCollection.Add(System.Web.UI.WebControls.HotSpot)" /> method adds the specified <see cref="T:System.Web.UI.WebControls.HotSpot" /> object to the end of the collection. To add a <see cref="T:System.Web.UI.WebControls.HotSpot" /> object to the collection at a specific index location, use the <see cref="M:System.Web.UI.WebControls.HotSpotCollection.Insert(System.Int32,System.Web.UI.WebControls.HotSpot)" /> method.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Appends a specified <see cref="T:System.Web.UI.WebControls.HotSpot" /> object to the end of the <see cref="T:System.Web.UI.WebControls.HotSpotCollection" /> collection.</para>
</summary>
<returns>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The index at which the object was added to the collection.</para>
</returns>
<param name="spot">
<attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.Web.UI.WebControls.HotSpot" /> object to append to the collection. </param>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="CreateKnownType">
<MemberSignature Language="C#" Value="protected override object CreateKnownType (int idx);" />
<MemberType>Method</MemberType>
<ReturnValue>
<ReturnType>System.Object</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="idx" Type="System.Int32" />
</Parameters>
<Docs>
<param name="idx">To be added.</param>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The <see cref="M:System.Web.UI.WebControls.HotSpotCollection.CreateKnownType(System.Int32)" /> method creates an instance of a <see cref="T:System.Web.UI.WebControls.HotSpot" /> object according to the index of the type returned by the <see cref="M:System.Web.UI.WebControls.HotSpotCollection.GetKnownTypes" /> method. The index values correspond to the types shown in the following table.</para>
<list type="table">
<listheader>
<item>
<term>
<para>Index</para>
</term>
<description>
<para>Parameter Type</para>
</description>
</item>
</listheader>
<item>
<term>
<para>0</para>
</term>
<description>
<para>
<see cref="T:System.Web.UI.WebControls.CircleHotSpot" /> </para>
</description>
</item>
<item>
<term>
<para>1</para>
</term>
<description>
<para>
<see cref="T:System.Web.UI.WebControls.RectangleHotSpot" />
</para>
</description>
</item>
<item>
<term>
<para>2</para>
</term>
<description>
<para>
<see cref="T:System.Web.UI.WebControls.PolygonHotSpot" /> </para>
</description>
</item>
</list>
<para>For example, if you specify 0 for the <paramref name="index" /> parameter, the method returns a <see cref="T:System.Web.UI.WebControls.CircleHotSpot" /> object. If you specify 1 for the <paramref name="index" /> parameter, the method returns a <see cref="T:System.Web.UI.WebControls.RectangleHotSpot" /> object. </para>
<para>The <see cref="M:System.Web.UI.WebControls.HotSpotCollection.GetKnownTypes" /> method returns an <see cref="T:System.Collections.ArrayList" /> object containing the known types of controls derived from the <see cref="T:System.Web.UI.WebControls.HotSpot" /> class.</para>
<block subset="none" type="note">
<para>This method is used only by control developers.</para>
</block>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Creates a default instance of a type derived from the <see cref="T:System.Web.UI.WebControls.HotSpot" /> class.</para>
</summary>
<returns>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>An object of a specified type derived from the <see cref="T:System.Web.UI.WebControls.HotSpot" /> class.</para>
</returns>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="GetKnownTypes">
<MemberSignature Language="C#" Value="protected override Type[] GetKnownTypes ();" />
<MemberType>Method</MemberType>
<ReturnValue>
<ReturnType>System.Type[]</ReturnType>
</ReturnValue>
<Parameters />
<Docs>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The <see cref="M:System.Web.UI.WebControls.HotSpotCollection.GetKnownTypes" /> method returns an array of <see cref="T:System.Web.UI.WebControls.HotSpot" /> object-derived types that the collection can contain. The array contains the <see cref="T:System.Web.UI.WebControls.CircleHotSpot" /> object, the <see cref="T:System.Web.UI.WebControls.RectangleHotSpot" /> object, and the <see cref="T:System.Web.UI.WebControls.PolygonHotSpot" /> object.</para>
<para>Use the <see cref="M:System.Web.UI.WebControls.HotSpotCollection.CreateKnownType(System.Int32)" /> method to return an instance of one of the types contained in the array. If you specify 0 for the method's <paramref name="index" /> parameter, the method returns a <see cref="T:System.Web.UI.WebControls.CircleHotSpot" /> object. If you specify 1 for the <paramref name="index" /> parameter, the method returns a <see cref="T:System.Web.UI.WebControls.RectangleHotSpot" /> object. If you specify 2 for the <paramref name="index" /> parameter, the method returns a <see cref="T:System.Web.UI.WebControls.PolygonHotSpot" /> object.</para>
<block subset="none" type="note">
<para>This method is used only by control developers.</para>
</block>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Creates an array of the <see cref="T:System.Web.UI.WebControls.HotSpot" /> object-derived types that a <see cref="T:System.Web.UI.WebControls.HotSpotCollection" /> collection can contain. </para>
</summary>
<returns>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>An array of <see cref="T:System.Web.UI.WebControls.HotSpot" /> object-derived types that a <see cref="T:System.Web.UI.WebControls.HotSpotCollection" /> collection can contain.</para>
</returns>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="Insert">
<MemberSignature Language="C#" Value="public void Insert (int idx, System.Web.UI.WebControls.HotSpot spot);" />
<MemberType>Method</MemberType>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="idx" Type="System.Int32" />
<Parameter Name="spot" Type="System.Web.UI.WebControls.HotSpot" />
</Parameters>
<Docs>
<param name="idx">To be added.</param>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The <see cref="M:System.Web.UI.WebControls.HotSpotCollection.Insert(System.Int32,System.Web.UI.WebControls.HotSpot)" /> method adds the specified <see cref="T:System.Web.UI.WebControls.HotSpot" /> object to the collection at the specified index location. To append a <see cref="T:System.Web.UI.WebControls.HotSpot" /> object to the end of the collection, use the <see cref="M:System.Web.UI.WebControls.HotSpotCollection.Add(System.Web.UI.WebControls.HotSpot)" /> method.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Inserts a specified <see cref="T:System.Web.UI.WebControls.HotSpot" /> object into the <see cref="T:System.Web.UI.WebControls.HotSpotCollection" /> collection at the specified index location.</para>
</summary>
<param name="spot">
<attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.Web.UI.WebControls.HotSpot" /> object to add to the collection. </param>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="Item">
<MemberSignature Language="C#" Value="public System.Web.UI.WebControls.HotSpot this[int idx] { get; }" />
<MemberType>Property</MemberType>
<ReturnValue>
<ReturnType>System.Web.UI.WebControls.HotSpot</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="idx" Type="System.Int32" />
</Parameters>
<Docs>
<param name="idx">To be added.</param>
<summary>To be added.</summary>
<value>To be added.</value>
<remarks>To be added.</remarks>
<since version=".NET 2.0" />
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="OnValidate">
<MemberSignature Language="C#" Value="protected override void OnValidate (object o);" />
<MemberType>Method</MemberType>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="o" Type="System.Object" />
</Parameters>
<Docs>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>This method checks the specified <see cref="T:System.Object" /> to determine whether it is a valid type derived from the <see cref="T:System.Web.UI.WebControls.HotSpot" /> class. Only an object of type <see cref="T:System.Web.UI.WebControls.CircleHotSpot" />, <see cref="T:System.Web.UI.WebControls.RectangleHotSpot" />, or <see cref="T:System.Web.UI.WebControls.PolygonHotSpot" /> is considered a valid type. </para>
<block subset="none" type="note">
<para>This method is used only by control developers.</para>
</block>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Checks the specified object to determine whether it is a valid type derived from the <see cref="T:System.Web.UI.WebControls.HotSpot" /> class.</para>
</summary>
<param name="o">
<attribution license="cc4" from="Microsoft" modified="false" />The object to validate. </param>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="Remove">
<MemberSignature Language="C#" Value="public void Remove (System.Web.UI.WebControls.HotSpot spot);" />
<MemberType>Method</MemberType>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="spot" Type="System.Web.UI.WebControls.HotSpot" />
</Parameters>
<Docs>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The <see cref="M:System.Web.UI.WebControls.HotSpotCollection.Remove(System.Web.UI.WebControls.HotSpot)" /> method removes the specified <see cref="T:System.Web.UI.WebControls.HotSpot" /> object from the collection. To remove a <see cref="T:System.Web.UI.WebControls.HotSpot" /> object from the collection at a specified index location, use the <see cref="M:System.Web.UI.WebControls.HotSpotCollection.RemoveAt(System.Int32)" /> method.</para>
<para>To add new <see cref="T:System.Web.UI.WebControls.HotSpot" /> objects to the collection, use the <see cref="M:System.Web.UI.WebControls.HotSpotCollection.Add(System.Web.UI.WebControls.HotSpot)" /> or the <see cref="M:System.Web.UI.WebControls.HotSpotCollection.Insert(System.Int32,System.Web.UI.WebControls.HotSpot)" /> method.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Removes the specified <see cref="T:System.Web.UI.WebControls.HotSpot" /> object from the <see cref="T:System.Web.UI.WebControls.HotSpotCollection" /> collection.</para>
</summary>
<param name="spot">
<attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.Web.UI.WebControls.HotSpot" /> object to remove from the collection. </param>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="RemoveAt">
<MemberSignature Language="C#" Value="public void RemoveAt (int idx);" />
<MemberType>Method</MemberType>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="idx" Type="System.Int32" />
</Parameters>
<Docs>
<param name="idx">To be added.</param>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The <see cref="M:System.Web.UI.WebControls.HotSpotCollection.RemoveAt(System.Int32)" /> method removes the <see cref="T:System.Web.UI.WebControls.HotSpot" /> object at the specified index location from the collection. To remove a specific <see cref="T:System.Web.UI.WebControls.HotSpot" /> object from the collection by name, use the <see cref="M:System.Web.UI.WebControls.HotSpotCollection.Remove(System.Web.UI.WebControls.HotSpot)" /> method.</para>
<para>To add new <see cref="T:System.Web.UI.WebControls.HotSpot" /> objects to the collection, use the <see cref="M:System.Web.UI.WebControls.HotSpotCollection.Add(System.Web.UI.WebControls.HotSpot)" /> or the <see cref="M:System.Web.UI.WebControls.HotSpotCollection.Insert(System.Int32,System.Web.UI.WebControls.HotSpot)" /> method.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Removes the <see cref="T:System.Web.UI.WebControls.HotSpot" /> object at the specified index location from the collection.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="SetDirtyObject">
<MemberSignature Language="C#" Value="protected override void SetDirtyObject (object o);" />
<MemberType>Method</MemberType>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="o" Type="System.Object" />
</Parameters>
<Docs>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>This method marks the specified <see cref="T:System.Web.UI.WebControls.HotSpot" /> object as changed since it was last loaded or saved from view state. This allows the object to save its entire view state.</para>
<block subset="none" type="note">
<para>This method is used only by control developers.</para>
</block>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Marks the specified <see cref="T:System.Web.UI.WebControls.HotSpot" /> object as changed since it was last loaded or saves from view state.</para>
</summary>
<param name="o">
<attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.Web.UI.WebControls.HotSpot" /> object to mark as changed since it was last loaded or saved from view state.</param>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
</Members>
</Type>
|