Occurs after an application completes opening the archive file.
[C#]
public event OnAfterOpenDelegate OnAfterOpen;
public delegate void OnAfterOpenDelegate(object sender, string fileName, ProcessOperation operation, bool confirm);
[VB.NET]
Public Event OnAfterOpen As OnAfterOpenDelegate
Public Delegate Sub OnAfterOpenDelegate(ByVal sender As Object, ByVal fileName As String, ByVal operation As ProcessOperation, ByVal confirm As Boolean)
Description
Write an AfterOpen event handler to take specific action immediately after an application opens the archive file.