Tablero.EventoFicha Delegate

Chatu Queens

TableroEventoFicha Delegate

Delegado para eventos relacionados con una casilla/ficha.

Namespace:  Draughts
Assembly:  Draughts (in Draughts.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public delegate void EventoFicha(
	Object sender,
	FichaEventArgs e
)
Public Delegate Sub EventoFicha ( 
	sender As Object,
	e As FichaEventArgs
)
public delegate void EventoFicha(
	Object^ sender, 
	FichaEventArgs^ e
)
type EventoFicha = 
    delegate of 
        sender : Object * 
        e : FichaEventArgs -> unit

Parameters

sender
Type: SystemObject
Objeto tablero que llama al evento.
e
Type: DraughtsFichaEventArgs
Objeto con información útil sobre la casilla y el evento.
See Also