20 references to MapAreaShape
System.Web.DataVisualization (20)
Common\General\ImageMap.cs (18)
172
private
MapAreaShape
_shape =
MapAreaShape
.Rectangle;
217
public MapArea(
MapAreaShape
shape, string url, float[] coordinates)
256
Initialize(
MapAreaShape
.Polygon, toolTip, url, attributes, postBackValue, coord, tag);
278
Initialize(
MapAreaShape
.Rectangle, toolTip, url, attributes, postBackValue, coord, tag);
292
public MapArea(
MapAreaShape
shape, string toolTip, string url, string attributes, string postBackValue, float[] coordinates, object tag)
299
private void Initialize(
MapAreaShape
shape, string toolTip, string url, string attributes, string postBackValue, float[] coordinates, object tag)
302
if (shape ==
MapAreaShape
.Circle && coordinates.Length != 3)
306
if (shape ==
MapAreaShape
.Rectangle && coordinates.Length != 4)
310
if (shape ==
MapAreaShape
.Polygon && (coordinates.Length % 2f) != 0f)
338
if (_shape ==
MapAreaShape
.Circle)
342
else if (_shape ==
MapAreaShape
.Rectangle)
346
else if (_shape ==
MapAreaShape
.Polygon)
363
if (this.Shape ==
MapAreaShape
.Circle)
371
else if (this.Shape ==
MapAreaShape
.Rectangle)
605
DefaultValue(typeof(
MapAreaShape
), "Rectangle"),
610
public
MapAreaShape
Shape
865
MapArea area = new MapArea(
MapAreaShape
.Polygon, toolTip, url, attributes, postBackValue, coord, null);
Common\General\Selection.cs (2)
759
MapAreaShape
.Polygon,
834
MapAreaShape
.Circle,