TemplateModeChangedEventArgs(TemplateGroup) 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 TemplateModeChangedEventArgs class with the specified template group.
public:
TemplateModeChangedEventArgs(System::Web::UI::Design::TemplateGroup ^ newTemplateGroup);
public TemplateModeChangedEventArgs (System.Web.UI.Design.TemplateGroup newTemplateGroup);
new System.Web.UI.Design.TemplateModeChangedEventArgs : System.Web.UI.Design.TemplateGroup -> System.Web.UI.Design.TemplateModeChangedEventArgs
Public Sub New (newTemplateGroup As TemplateGroup)
Parameters
- newTemplateGroup
- TemplateGroup
A new template group that is used to initialize the NewTemplateGroup.
Remarks
A ViewEvent delegate method uses the TemplateModeChangedEventArgs constructor to initialize a TemplateModeChangedEventArgs object for use with a ViewEventArgs object.
When you exit or enter template editing mode, the designer host initializes a ViewEventArgs object for a TemplateModeChanged event type, and then sets the EventArgs property with a TemplateModeChangedEventArgs object. The newTemplateGroup
parameter specifies a new template group when you enter template editing mode. The newTemplateGroup
parameter is typically null
for exiting template editing mode.