Font.Reset Event (Microsoft.DirectX.Direct3D)
Occurs after the Font.OnResetDevice method is called or after the Device is reset.
Visual Basic Public Event Reset As EventHandler C# public event EventHandler Reset;
C++ public:
event EventHandler^ Reset;
JScript In JScript, you can use events, but you cannot define your own.
To add an event handler that listens for a Font.Reset event, use the following C# code.
[C#]Font.Reset += new System.EventHandler(this.ResetEventHandler);
Show:
