Sprite.Lost Event (Microsoft.DirectX.Direct3D)

Occurs when an object is lost, normally immediately prior to a device reset.

Definition

Visual Basic Public Event Lost As EventHandlerLeave Site
C# public event EventHandlerLeave Site Lost;
C++ public:
event EventHandlerLeave SiteLost;
JScript In JScript, you can use events, but you cannot define your own.

Remarks

To add an event handler that listens for a Sprite.Lost event, use the following C# code.

[C#]sprite.Lost += new System.EventHandler(this.LostEventHandler);