//------------------------------------------------------------------------------ // // Copyright (c) Microsoft Corporation. All rights reserved. // //------------------------------------------------------------------------------ using System; namespace System.Web.UI.WebControls { /// /// Enumeration of possible ImageMap behaviors. /// public enum HotSpotMode { /// /// Inherit the properties of the ImageMap /// NotSet = 0, /// /// Navigate to a web page. /// Navigate = 1, /// /// Cause a postback. /// PostBack = 2, /// /// no href /// Inactive = 3 } }