ViewEventArgs Constructor (ViewEvent^, DesignerRegion^, EventArgs^)
.NET Framework (current version)
Initializes a new instance of the ViewEventArgs class for the type of view event on the design surface.
Assembly: System.Design (in System.Design.dll)
public:
ViewEventArgs(
ViewEvent^ eventType,
DesignerRegion^ region,
EventArgs^ eventArgs
)
Parameters
- eventType
-
Type:
System.Web.UI.Design::ViewEvent^
The type of action that raised the event; used to initialize the EventType.
- region
-
Type:
System.Web.UI.Design::DesignerRegion^
The designer region that the action applies to; used to initialize the Region.
- eventArgs
-
Type:
System::EventArgs^
The event arguments associated with eventType; used to initialize the EventArgs.
The ViewEventArgs constructor is used by the designer host to initialize a ViewEventArgs object for the ViewEvent event. The designer host passes the initialized ViewEventArgs object to the ViewEventHandler delegate.
Typically, region is set for Click events, and null (Nothing in Visual Basic) for Paint and TemplateModeChanged events.
.NET Framework
Available since 2.0
Available since 2.0
Show: