Effect.Lost Event (Microsoft.DirectX.Direct3D)
Occurs when an object is lost, normally just before a device is reset.
Definition
Visual Basic Public Event Lost As EventHandler C# public event EventHandler Lost; C++ public:
event EventHandler^ Lost;JScript In JScript, you can use events, but you cannot define your own.
Remarks
To add an event handler that listens for an Effect.Lost event, use the following C# code.
[C#] effect.Lost += new System.EventHandler(this.LostEventHandler);