EventBindingService.IEventBindingService.ShowCode Método
Definición
Importante
Parte de la información hace referencia a la versión preliminar del producto, que puede haberse modificado sustancialmente antes de lanzar la versión definitiva. Microsoft no otorga ninguna garantía, explícita o implícita, con respecto a la información proporcionada aquí.
Muestra el código de usuario del diseñador.
Sobrecargas
IEventBindingService.ShowCode() |
Muestra el código de usuario del diseñador. |
IEventBindingService.ShowCode(Int32) |
Muestra el código de usuario del diseñador en la línea especificada. |
IEventBindingService.ShowCode(IComponent, EventDescriptor) |
Muestra el código de usuario del evento especificado. |
IEventBindingService.ShowCode()
Muestra el código de usuario del diseñador.
virtual bool System.ComponentModel.Design.IEventBindingService.ShowCode() = System::ComponentModel::Design::IEventBindingService::ShowCode;
bool IEventBindingService.ShowCode ();
abstract member System.ComponentModel.Design.IEventBindingService.ShowCode : unit -> bool
override this.System.ComponentModel.Design.IEventBindingService.ShowCode : unit -> bool
Function ShowCode () As Boolean Implements IEventBindingService.ShowCode
Devoluciones
Es true
si se muestra el código; de lo contrario, es false
.
Implementaciones
Comentarios
Este miembro es una implementación explícita de un miembro de interfaz. Solo se puede utilizar cuando la instancia de EventBindingService se convierte en una interfaz IEventBindingService.
Se aplica a
IEventBindingService.ShowCode(Int32)
Muestra el código de usuario del diseñador en la línea especificada.
virtual bool System.ComponentModel.Design.IEventBindingService.ShowCode(int lineNumber) = System::ComponentModel::Design::IEventBindingService::ShowCode;
bool IEventBindingService.ShowCode (int lineNumber);
abstract member System.ComponentModel.Design.IEventBindingService.ShowCode : int -> bool
override this.System.ComponentModel.Design.IEventBindingService.ShowCode : int -> bool
Function ShowCode (lineNumber As Integer) As Boolean Implements IEventBindingService.ShowCode
Parámetros
- lineNumber
- Int32
Número de la línea donde se ha de colocar el símbolo de intercalación.
Devoluciones
Es true
si se muestra el código; de lo contrario, es false
.
Implementaciones
Se aplica a
IEventBindingService.ShowCode(IComponent, EventDescriptor)
Muestra el código de usuario del evento especificado.
virtual bool System.ComponentModel.Design.IEventBindingService.ShowCode(System::ComponentModel::IComponent ^ component, System::ComponentModel::EventDescriptor ^ e) = System::ComponentModel::Design::IEventBindingService::ShowCode;
bool IEventBindingService.ShowCode (System.ComponentModel.IComponent component, System.ComponentModel.EventDescriptor e);
abstract member System.ComponentModel.Design.IEventBindingService.ShowCode : System.ComponentModel.IComponent * System.ComponentModel.EventDescriptor -> bool
override this.System.ComponentModel.Design.IEventBindingService.ShowCode : System.ComponentModel.IComponent * System.ComponentModel.EventDescriptor -> bool
Function ShowCode (component As IComponent, e As EventDescriptor) As Boolean Implements IEventBindingService.ShowCode
Parámetros
- component
- IComponent
Componente al que está conectado el evento.
Evento que se va a mostrar.
Devoluciones
Es true
si se muestra el código; de lo contrario, es false
.
Implementaciones
Excepciones
events
es null
.