DekGenius.com
[ Team LiB ] Previous Section Next Section

RefreshEventArgs

System.ComponentModel (system.dll)class

This class encapsulates the data for the TypeDescriptor.Refreshed event, which is raised (at design time) when a component's properties or events are updated. You can retrieve the identity of the component that was modified with the ComponentChanged property, and the type of that component is given by TypeChanged.

public class RefreshEventArgs : EventArgs {
// Public Constructors
   public RefreshEventArgs(object componentChanged);
   public RefreshEventArgs(Type typeChanged);
// Public Instance Properties
   public object ComponentChanged{get; }
   public Type TypeChanged{get; }
}

Hierarchy

System.Object System.EventArgs RefreshEventArgs

Passed To

RefreshEventHandler.{BeginInvoke(), Invoke()}

    [ Team LiB ] Previous Section Next Section