Nevron .NET Vision
Nevron.UI.WebForm.Controls Namespace / NClientServerTechnology Class / OnWebControlDesignTimeChanged Method
The instance of the NWebControlDesigner object that invoked the method.
A System.ComponentModel.Design.ComponentChangedEventArgs that contains the event data.


In This Topic
    OnWebControlDesignTimeChanged Method (NClientServerTechnology)
    In This Topic
    This method is invoked from the overridden OnComponentChanged method of the NWebControlDesigner class. By default does nothing.
    Syntax
    'Declaration
     
    
    Public Overridable Sub OnWebControlDesignTimeChanged( _
       ByVal designer As NWebControlDesigner, _
       ByVal ce As System.ComponentModel.Design.ComponentChangedEventArgs _
    ) 
    'Usage
     
    
    Dim instance As NClientServerTechnology
    Dim designer As NWebControlDesigner
    Dim ce As System.ComponentModel.Design.ComponentChangedEventArgs
     
    instance.OnWebControlDesignTimeChanged(designer, ce)
    public virtual void OnWebControlDesignTimeChanged( 
       NWebControlDesigner designer,
       System.ComponentModel.Design.ComponentChangedEventArgs ce
    )

    Parameters

    designer
    The instance of the NWebControlDesigner object that invoked the method.
    ce
    A System.ComponentModel.Design.ComponentChangedEventArgs that contains the event data.
    Remarks
    It is recommended that the whole implementation of this method is encapsulated in a try-catch block like this: try { // implementation } catch (Exception ex) { RememberHtmlExceptionMessage(ex); } The RememberHtmlExceptionMessage(Exception) method will store any error data and provide it later for formatted output to the client. Using the RememberHtmlExceptionMessage(Exception) method also allows to collect multiple errors' data in order to diagnose possible problems more easily.
    Requirements

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

    See Also