ViewEvent Class (System.Web.UI.Design)

Switch View :
ScriptFree
.NET Framework Class Library
ViewEvent Class

Represents the kind of event that has occurred on a view of a control at design time. This class cannot be inherited.

Namespace:  System.Web.UI.Design
Assembly:  System.Design (in System.Design.dll)
Syntax

Visual Basic (Declaration)
Public NotInheritable Class ViewEvent
Visual Basic (Usage)
Dim instance As ViewEvent
C#
public sealed class ViewEvent
Visual C++
public ref class ViewEvent sealed
JScript
public final class ViewEvent
Remarks

A ViewEvent object is provided to the designer component by the design host, for example Visual Studio 2005, when raising an event caused by certain user actions on the design-time view of a control. The IControlDesignerView.ViewEvent event is handled by a ViewEventHandler delegate method, which takes a ViewEventArgs object as a parameter. The EventType property of the ViewEventArgs class is a ViewEvent object. The ViewEventHandler delegate method compares the EventType property to the static ViewEvent fields to determine which type of action raised the event. For example, an event is raised under the following circumstances:

  • You click a region on the design surface.

  • The designer draws a control on the design surface.

  • You enter or exit template editing mode for a control.

The ControlDesigner class supplies a default delegate to handle the IControlDesignerView.ViewEvent event. Custom control designers override the OnClick, OnPaint, and OnTemplateModeChanged methods to process those events for the control on the design surface.

The designer host initializes a ViewEventArgs object for the type of action on the design surface, and then passes the object to the ViewEventHandler delegate. The EventType property of the ViewEventArgs object indicates which type of action:

The EventArgs property supplies the event arguments that are specific to the type of action.

Inheritance Hierarchy

System.Object
  System.Web.UI.Design.ViewEvent
Thread Safety

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.
Platforms

Windows 7, Windows Vista, Windows XP SP2, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP Starter Edition, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003, Windows Server 2000 SP4, Windows Millennium Edition, Windows 98

The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Version Information

.NET Framework

Supported in: 3.5, 3.0, 2.0
See Also

Reference