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
|
<?xml version="1.0" encoding="utf-8"?>
<Type Name="RectangleHotSpot" FullName="System.Web.UI.WebControls.RectangleHotSpot">
<TypeSignature Language="C#" Value="public sealed class RectangleHotSpot : System.Web.UI.WebControls.HotSpot" />
<AssemblyInfo>
<AssemblyName>System.Web</AssemblyName>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Base>
<BaseTypeName>System.Web.UI.WebControls.HotSpot</BaseTypeName>
</Base>
<Interfaces />
<Docs>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>This class defines a rectangular hot spot region in an <see cref="T:System.Web.UI.WebControls.ImageMap" /> control. To define the region of the <see cref="T:System.Web.UI.WebControls.RectangleHotSpot" /> object, set the <see cref="P:System.Web.UI.WebControls.RectangleHotSpot.Left" /> property to the value that represents the x-coordinate of the rectangular region's top left corner. Set the <see cref="P:System.Web.UI.WebControls.RectangleHotSpot.Top" /> property to the value that represents the y-coordinate of the rectangular region's top left corner. Set the <see cref="P:System.Web.UI.WebControls.RectangleHotSpot.Right" /> property to the value that represents the x-coordinate of the rectangular region's bottom right corner. Set of the <see cref="P:System.Web.UI.WebControls.RectangleHotSpot.Bottom" /> property to the value that represents the y-coordinate of the rectangular region's bottom right corner.</para>
<para>When a <see cref="T:System.Web.UI.WebControls.RectangleHotSpot" /> control is clicked, the page navigates to a URL, generates a post back to the server, or does nothing. The <see cref="P:System.Web.UI.WebControls.HotSpot.HotSpotMode" /> property specifies this behavior. To navigate to a URL, set the <see cref="P:System.Web.UI.WebControls.HotSpot.HotSpotMode" /> property to HotSpotMode.Navigate and use the <see cref="P:System.Web.UI.WebControls.HotSpot.NavigateUrl" /> property to specify the URL to navigate to. To post back to the server, set the <see cref="P:System.Web.UI.WebControls.HotSpot.HotSpotMode" /> property to HotSpotMode.PostBack and use the <see cref="P:System.Web.UI.WebControls.HotSpot.PostBackValue" /> property to specify a name for the <see cref="T:System.Web.UI.WebControls.RectangleHotSpot" /> object. This name will be passed in the <see cref="T:System.Web.UI.WebControls.ImageMapEventArgs" /> event data when the <see cref="T:System.Web.UI.WebControls.RectangleHotSpot" /> is clicked. . If you want the <see cref="T:System.Web.UI.WebControls.HotSpot" /> object to have no behavior, set the <see cref="P:System.Web.UI.WebControls.HotSpot.HotSpotMode" /> property to HotSpotMode.Inactive.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Defines a rectangular hot spot region in 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 RectangleHotSpot ();" />
<MemberType>Constructor</MemberType>
<Parameters />
<Docs>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Use this constructor to initialize a new instance of the <see cref="T:System.Web.UI.WebControls.RectangleHotSpot" /> 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.RectangleHotSpot" /> class.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="Bottom">
<MemberSignature Language="C#" Value="public int Bottom { set; get; }" />
<MemberType>Property</MemberType>
<Attributes>
<Attribute>
<AttributeName>System.ComponentModel.DefaultValue(0)</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>The <see cref="P:System.Web.UI.WebControls.RectangleHotSpot.Bottom" /> property allows you to get or set a value that represents the y-coordinate of the bottom side of the rectangular region defined by this <see cref="T:System.Web.UI.WebControls.RectangleHotSpot" /> object. To completely define a <see cref="T:System.Web.UI.WebControls.RectangleHotSpot" /> object, you must specify a value for the this property and for the <see cref="P:System.Web.UI.WebControls.RectangleHotSpot.Left" />, <see cref="P:System.Web.UI.WebControls.RectangleHotSpot.Top" />, and <see cref="P:System.Web.UI.WebControls.RectangleHotSpot.Right" /> properties.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets or sets the y-coordinate of the bottom side of the rectangular region defined by this <see cref="T:System.Web.UI.WebControls.RectangleHotSpot" /> object.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="GetCoordinates">
<MemberSignature Language="C#" Value="public override string GetCoordinates ();" />
<MemberType>Method</MemberType>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Parameters />
<Docs>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>This method returns a string that represents the coordinates of a <see cref="T:System.Web.UI.WebControls.RectangleHotSpot" /> object's top left corner and the coordinates of its bottom right corner. This method uses the values assigned to the <see cref="P:System.Web.UI.WebControls.RectangleHotSpot.Left" /> and <see cref="P:System.Web.UI.WebControls.RectangleHotSpot.Top" /> properties to return the coordinates for the top left corner. It uses the values assigned to the <see cref="P:System.Web.UI.WebControls.RectangleHotSpot.Right" /> and <see cref="P:System.Web.UI.WebControls.RectangleHotSpot.Bottom" /> properties to return the coordinates for the bottom right corner.</para>
<para>The <see cref="M:System.Web.UI.WebControls.RectangleHotSpot.GetCoordinates" /> method is used internally by ASP.NET to get the text to use for the coordinates of a <see cref="T:System.Web.UI.WebControls.RectangleHotSpot" /> when it is rendered. The string that is returned is specific to the browser and markup language.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Returns a string that represents the x -and y-coordinates of a <see cref="T:System.Web.UI.WebControls.RectangleHotSpot" /> object's top left corner and the x- and y-coordinates of its bottom right corner.</para>
</summary>
<returns>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>A string that represents the x- and y-coordinates of a <see cref="T:System.Web.UI.WebControls.RectangleHotSpot" /> object's top left corner and the x- and y-coordinates of its bottom right corner.</para>
</returns>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="Left">
<MemberSignature Language="C#" Value="public int Left { set; get; }" />
<MemberType>Property</MemberType>
<Attributes>
<Attribute>
<AttributeName>System.ComponentModel.DefaultValue(0)</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>The <see cref="P:System.Web.UI.WebControls.RectangleHotSpot.Left" /> property allows you to get or set a value that represents the x-coordinate of the left side of the rectangular region defined by this <see cref="T:System.Web.UI.WebControls.RectangleHotSpot" /> object. To completely define a <see cref="T:System.Web.UI.WebControls.RectangleHotSpot" /> object, you must specify a value for the this property and for the <see cref="P:System.Web.UI.WebControls.RectangleHotSpot.Top" />, <see cref="P:System.Web.UI.WebControls.RectangleHotSpot.Right" />, and <see cref="P:System.Web.UI.WebControls.RectangleHotSpot.Bottom" /> properties.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets or sets the x-coordinate of the left side of the rectangular region defined by this <see cref="T:System.Web.UI.WebControls.RectangleHotSpot" /> object.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="MarkupName">
<MemberSignature Language="C#" Value="protected override string MarkupName { get; }" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.String</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.RectangleHotSpot.MarkupName" /> property is used internally by ASP.NET to get the string representation for the <see cref="T:System.Web.UI.WebControls.RectangleHotSpot" /> object's shape. This property always returns the string "rect". You cannot access this property directly from your application's code.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets the string representation for the <see cref="T:System.Web.UI.WebControls.RectangleHotSpot" /> object's shape.</para>
</summary>
</Docs>
</Member>
<Member MemberName="Right">
<MemberSignature Language="C#" Value="public int Right { set; get; }" />
<MemberType>Property</MemberType>
<Attributes>
<Attribute>
<AttributeName>System.ComponentModel.DefaultValue(0)</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>The <see cref="P:System.Web.UI.WebControls.RectangleHotSpot.Right" /> property allows you to get or set a value that represents the x-coordinate of the right side of the rectangular region defined by this <see cref="T:System.Web.UI.WebControls.RectangleHotSpot" /> object. To completely define a <see cref="T:System.Web.UI.WebControls.RectangleHotSpot" /> object, you must specify a value for this property and for the <see cref="P:System.Web.UI.WebControls.RectangleHotSpot.Left" />, <see cref="P:System.Web.UI.WebControls.RectangleHotSpot.Top" />, and <see cref="P:System.Web.UI.WebControls.RectangleHotSpot.Bottom" /> properties.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets or sets the x-coordinate of the right side of the rectangular region defined by this <see cref="T:System.Web.UI.WebControls.RectangleHotSpot" /> object.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="Top">
<MemberSignature Language="C#" Value="public int Top { set; get; }" />
<MemberType>Property</MemberType>
<Attributes>
<Attribute>
<AttributeName>System.ComponentModel.DefaultValue(0)</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>The <see cref="P:System.Web.UI.WebControls.RectangleHotSpot.Top" /> property allows you to get or set a value that represents the y-coordinate of the top side of the rectangular region defined by this <see cref="T:System.Web.UI.WebControls.RectangleHotSpot" /> object. To completely define a <see cref="T:System.Web.UI.WebControls.RectangleHotSpot" /> object. you must specify a value for this property and for the <see cref="P:System.Web.UI.WebControls.RectangleHotSpot.Left" />, <see cref="P:System.Web.UI.WebControls.RectangleHotSpot.Right" />, and <see cref="P:System.Web.UI.WebControls.RectangleHotSpot.Bottom" /> properties.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets or sets the y-coordinate of the top side of the rectangular region defined by this <see cref="T:System.Web.UI.WebControls.RectangleHotSpot" /> object.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
</Members>
</Type>
|