ViewEventArgs(ViewEvent, DesignerRegion, EventArgs) Constructor
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Initializes a new instance of the ViewEventArgs class for the type of view event on the design surface.
public:
ViewEventArgs(System::Web::UI::Design::ViewEvent ^ eventType, System::Web::UI::Design::DesignerRegion ^ region, EventArgs ^ eventArgs);
public ViewEventArgs (System.Web.UI.Design.ViewEvent eventType, System.Web.UI.Design.DesignerRegion region, EventArgs eventArgs);
new System.Web.UI.Design.ViewEventArgs : System.Web.UI.Design.ViewEvent * System.Web.UI.Design.DesignerRegion * EventArgs -> System.Web.UI.Design.ViewEventArgs
Public Sub New (eventType As ViewEvent, region As DesignerRegion, eventArgs As EventArgs)
Parameters
- region
- DesignerRegion
The designer region that the action applies to; used to initialize the Region.
- eventArgs
- EventArgs
The event arguments associated with eventType
; used to initialize the EventArgs.
Remarks
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.