TypeDescriptor.CreateEvent Metodo
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Crea un nuovo descrittore di eventi che è identico a uno esistente.
Overload
CreateEvent(Type, EventDescriptor, Attribute[]) |
Crea un nuovo descrittore di eventi che è identico a un descrittore esistente, quando viene passato l'oggetto esistente EventDescriptor. |
CreateEvent(Type, String, Type, Attribute[]) |
Crea un nuovo descrittore di eventi identico a un descrittore di eventi esistente generando dinamicamente le informazioni sul descrittore da un evento specificato su un tipo. |
CreateEvent(Type, EventDescriptor, Attribute[])
- Source:
- TypeDescriptor.cs
- Source:
- TypeDescriptor.cs
- Source:
- TypeDescriptor.cs
Crea un nuovo descrittore di eventi che è identico a un descrittore esistente, quando viene passato l'oggetto esistente EventDescriptor.
public:
static System::ComponentModel::EventDescriptor ^ CreateEvent(Type ^ componentType, System::ComponentModel::EventDescriptor ^ oldEventDescriptor, ... cli::array <Attribute ^> ^ attributes);
public static System.ComponentModel.EventDescriptor CreateEvent (Type componentType, System.ComponentModel.EventDescriptor oldEventDescriptor, params Attribute[] attributes);
static member CreateEvent : Type * System.ComponentModel.EventDescriptor * Attribute[] -> System.ComponentModel.EventDescriptor
Public Shared Function CreateEvent (componentType As Type, oldEventDescriptor As EventDescriptor, ParamArray attributes As Attribute()) As EventDescriptor
Parametri
- componentType
- Type
Tipo di componente per cui creare il nuovo evento.
- oldEventDescriptor
- EventDescriptor
Informazioni sull'evento esistente.
- attributes
- Attribute[]
Nuovi attributi.
Restituisce
Un nuovo oggetto EventDescriptor i cui attributi di metadati specificati sono uniti agli attributi di metadati esistenti.
Vedi anche
Si applica a
CreateEvent(Type, String, Type, Attribute[])
- Source:
- TypeDescriptor.cs
- Source:
- TypeDescriptor.cs
- Source:
- TypeDescriptor.cs
Crea un nuovo descrittore di eventi identico a un descrittore di eventi esistente generando dinamicamente le informazioni sul descrittore da un evento specificato su un tipo.
public:
static System::ComponentModel::EventDescriptor ^ CreateEvent(Type ^ componentType, System::String ^ name, Type ^ type, ... cli::array <Attribute ^> ^ attributes);
public static System.ComponentModel.EventDescriptor CreateEvent (Type componentType, string name, Type type, params Attribute[] attributes);
static member CreateEvent : Type * string * Type * Attribute[] -> System.ComponentModel.EventDescriptor
Public Shared Function CreateEvent (componentType As Type, name As String, type As Type, ParamArray attributes As Attribute()) As EventDescriptor
Parametri
- componentType
- Type
Tipo di componente su cui si basa l'evento.
- name
- String
Nome dell'evento.
- type
- Type
Tipo del delegato che gestisce l'evento.
- attributes
- Attribute[]
Attributi per l'evento.
Restituisce
EventDescriptor associato a un tipo.