XFileSaveObject.Disposing Event |
Language: |
Occurs when the Dispose method is called or when the XFileSaveObject object is finalized and collected by the garbage collector of the Microsoft® .NET common language runtime.
Visual Basic .NET Public Event Disposing As EventHandler C# public event EventHandler Disposing; Managed C++ public: __event EventHandler Disposing; JScript .NET In JScript .NET, you can use events, but you cannot define your own.
To add an event handler that listens for the Microsoft.DirectX.Direct3D.XFileSaveObject.Disposing event, use the following code.
obj.Disposing += new System.EventHandler(this.OnDisposing);The Disposed property of the XFileSaveObject object indicates whether that object has been disposed.
Feedback? Please provide us with your comments on this topic.