//------------------------------------------------------------------------------
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
//------------------------------------------------------------------------------
namespace System.Web.UI.WebControls {
using System;
///
/// Provides data for the ImageMap click event.
///
public class ImageMapEventArgs : EventArgs {
private string _postBackValue;
public ImageMapEventArgs(string value) {
_postBackValue = value;
}
///
/// Gets the value associated with the clicked area.
///
public string PostBackValue {
get {
return _postBackValue;
}
}
}
}