Font.Lost Event (Microsoft.DirectX.Direct3D)
Occurs when an object is lost, normally just before a device is reset.
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.
To add an event handler that listens for a Font.Lost event, use the following C# code.
[C#]Font.Lost += new System.EventHandler(this.LostEventHandler);
Show:
