TemplateModeChangedEventArgs Class (System.Web.UI.Design)

Switch View :
ScriptFree
.NET Framework Class Library
TemplateModeChangedEventArgs Class

Provides data for a ViewEvent event that is raised when the template mode changes for a control on the design surface.

Inheritance Hierarchy

System.Object
  System.EventArgs
    System.Web.UI.Design.TemplateModeChangedEventArgs

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

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

The TemplateModeChangedEventArgs type exposes the following members.

Constructors

  Name Description
Public method TemplateModeChangedEventArgs Initializes a new instance of the TemplateModeChangedEventArgs class with the specified template group.
Top
Properties

  Name Description
Public property NewTemplateGroup Gets the template group that was created when you entered template editing mode.
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 a designer host, such as Visual Studio 2005, for certain actions on a control on the design surface. For example, an event is raised when you enter or exit template editing mode for a control.

The ControlDesigner class supplies a default delegate to handle the ViewEvent event. 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.

When the ViewEventArgs object indicates that the template mode has changed, the default delegate in the ControlDesigner class updates the value for the InTemplateMode property.

Custom designers that are derived from the TemplatedControlDesigner class can override the OnTemplateModeChanged method to perform additional processing when the template editing mode changes for a control on the design surface.

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