IndexBuffer.Created Event (Microsoft.DirectX.Direct3D)
Occurs after a device is reset and the IndexBuffer is re-created.
Definition
Visual Basic Public Event Created As EventHandler C# public event EventHandler Created; C++ public:
event EventHandler^ Created;JScript In JScript, you can use events, but you cannot define your own.
Remarks
**Note: **This event occurs only on Pool.Default resources.
To add an event handler that listens for an IndexBuffer.Created event, use the following C# code.
[C#]indexBuffer.Created += new System.EventHandler(this.CreatedEventHandler);