OnExit event/delegate/callback
Filter:
Pascal C++ (Lib) C++ (VCL) C++ (.NET) C# VB.NETOverview
This event is fired after CBDisk closed the storage.
Declaration
[Pascal]
TCBDiskExitEvent = procedure(
Sender : TObject) of object;
[C++ (Lib)]
typedef Error (*CBDiskExitEvent)(CBDisk* Sender);
[C++ (VCL)]
typedef void (__closure *TCBDiskExitEvent)(
System::TObject* Sender);
[C++ (.NET)]
public __delegate void CBDiskExitEvent(
CBDisk^ Sender);
[C#]
public void CBDiskExitEvent(
CBDisk Sender);
[VB.NET]
Sub CBDiskExitEvent(
ByVal Sender As CBDisk)
Parameters
- Sender - reference to the class that called the delegate/event handler.
Description
This event is fired after CBDisk closed the storage. The application can perform cleanup operations in response to this event.
See also
Got questions or comments about this topic? Tell us about them.

