System.Web
2.0.0.0
System.Web.UI.WebControls.HotSpot
This class defines a circle-shaped hot spot region in an control. To define the region of the object, set the property to the value that represents the x-coordinate of the center of the circular region. Set the property to the value that represents the y-coordinate of the center of the circular region. Set the property to the distance from the center of the circle to the edge.
When a control is clicked, the page either navigates to a URL, generates a post back to the server, or does nothing. The property specifies this behavior. To navigate to a URL, set the property to HotSpotMode.Navigate, and use the property to specify the URL to navigate to. To post back to the server, set the property to HotSpotMode.PostBack, and use the property to specify a name for the object. This name will be passed in the event data when the is clicked. If you want the object to have no behavior, set the property to HotSpotMode.Inactive.
Defines a circular hot spot region in an control. This class cannot be inherited.
Constructor
Use this constructor to initialize a new instance of the class.
Initializes a new instance of the class.
2.0.0.0
Method
System.String
This method uses the values assigned to the and properties to return the center coordinates and the value assigned to the property to return the radius.
The method is used internally by ASP.NET to get the text to use for the coordinates of a when it is rendered.
Returns a string that represents the x- and y-coordinates of a object's center and the length of its radius.
A string that represents the x- and y-coordinates of a object's center and the length of its radius.
2.0.0.0
Property
2.0.0.0
System.String
To be added.
The property is used internally by ASP.NET to get the string representation for the object's shape. This property always returns the string "circle". You cannot access this property directly from your application's code.
Gets the markup-language string representation for the shape of the object.
Property
System.ComponentModel.DefaultValue(0)
System.Int32
To be added.
The property allows you to get or set a value that represents the distance in pixels from the center to the edge of the circular region defined by this object. To completely define a object, you must specify a value for the property as well as the and properties.
Gets or sets the distance from the center to the edge of the circular region defined by this object.
2.0.0.0
Property
System.ComponentModel.DefaultValue(0)
System.Int32
To be added.
The property allows you to get or set a value that represents the x-coordinate of the center of the circular region defined by this object. To completely define a object, you must specify a value for the property as well as the and properties.
Gets or sets the x-coordinate of the center of the circular region defined by this object.
2.0.0.0
Property
System.ComponentModel.DefaultValue(0)
System.Int32
To be added.
The property allows you to get or set a value that represents the y-coordinate of the center of the circular region defined by this object. To completely define a object, you must specify a value for the property as well as the and properties.
Gets or sets the y-coordinate of the center of the circular region defined by this object.
2.0.0.0