ViewEventArgs Class (System.Web.UI.Design)

Switch View :
ScriptFree
.NET Framework Class Library
ViewEventArgs Class

Provides data for the ViewEvent event.

Inheritance Hierarchy

System.Object
  System.EventArgs
    System.Web.UI.Design.ViewEventArgs

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

Visual Basic
Public Class ViewEventArgs _
	Inherits EventArgs
C#
public class ViewEventArgs : EventArgs
Visual C++
public ref class ViewEventArgs : public EventArgs
F#
type ViewEventArgs =  
    class
        inherit EventArgs
    end

The ViewEventArgs type exposes the following members.

Constructors

  Name Description
Public method ViewEventArgs Initializes a new instance of the ViewEventArgs class for the type of view event on the design surface.
Top
Properties

  Name Description
Public property EventArgs Gets the event arguments that are associated with the action that raised the event.
Public property EventType Gets the type of action that raised the event.
Public property Region Gets the designer region that the event applies to.
Top
Methods

  Name Description
Public method Equals(Object) Determines whether the specified Object is equal to the current Object. (Inherited from Object.)
Protected method Finalize Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object.)
Public method GetHashCode Serves as a hash function for a particular type. (Inherited from Object.)
Public method GetType Gets the Type of the current instance. (Inherited from Object.)
Protected method MemberwiseClone Creates a shallow copy of the current Object. (Inherited from Object.)
Public method ToString Returns a string that represents the current object. (Inherited from Object.)
Top
Remarks

The ViewEvent event is raised by the designer host for certain actions on a control on the design surface. The ViewEvent is handled by a ViewEventHandler delegate method, which takes a ViewEventArgs object as a parameter.

The ControlDesigner class supplies a default delegate to handle the ViewEvent. 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 Region property represents the control designer region that the event applies to. 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.

For example, the designer host initializes ViewEventArgs objects as follows:

For more information about events and delegates, see Events and Delegates.

Version Information

.NET Framework

Supported in: 4, 3.5, 3.0, 2.0
Platforms

Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
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.
See Also

Reference