Specifies a set of attributes to be added to the <AREA> tag.

Namespace:  C1.Web.C1WebChartBase
Assembly:  C1.Web.C1WebChart.2 (in C1.Web.C1WebChart.2.dll)

Syntax

C#
[DefaultValueAttribute("")]
[DefaultMapAreaAttribute]
[RefreshPropertiesAttribute(RefreshProperties.Repaint)]
public string Attributes { get; set; }
Visual Basic
<DefaultValueAttribute("")> _
<DefaultMapAreaAttribute> _
<RefreshPropertiesAttribute(RefreshProperties.Repaint)> _
Public Property Attributes As String
	Get
	Set

Remarks

Each MapArea can have additional attributes set as appropriate for <AREA> tags. For more information on <AREA> tags see the Microsoft documentation.

Setting this property causes the specified string to appear as a set of attributes for the MapArea. Note that the attribute value is added to the <AREA> tag as a literal string, so any encoding necessary must be performed to the property value.

See Also