Discuss this help topic in SecureBlackbox Forum
This event is fired when bzip2 compression is finished.
Declaration
[C#]
event TSBTarCompressionTarToBZip2FinishedEvent OnCompressionTarToBZip2Finished;
delegate void TSBTarCompressionTarToBZip2FinishedEvent(Object Sender);
[VB.NET]
Event OnCompressionTarToBZip2Finished As TSBTarCompressionTarToBZip2FinishedEvent
Delegate Sub TSBTarCompressionTarToBZip2FinishedEvent(ByVal Sender As Object)
[Pascal]
property OnCompressionTarToBZip2Finished : TSBTarCompressionTarToBZip2FinishedEvent;
TSBTarCompressionTarToBZip2FinishedEvent = procedure(Sender : TObject) of object;
[C++]
void get_OnCompressionTarToBZip2Finished(TSBTarCompressionTarToBZip2FinishedEvent &pMethodOutResult, void * &pDataOutResult);
void set_OnCompressionTarToBZip2Finished(TSBTarCompressionTarToBZip2FinishedEvent pMethodValue, void * pDataValue);
typedef void (SB_CALLBACK *TSBTarCompressionTarToBZip2FinishedEvent)(void * _ObjectData, TObjectHandle Sender);
[PHP]
TSBTarCompressionTarToBZip2FinishedEvent|callable|NULL get_OnCompressionTarToBZip2Finished()
void set_OnCompressionTarToBZip2Finished(TSBTarCompressionTarToBZip2FinishedEvent|callable|NULL $Value)
callable TSBTarCompressionTarToBZip2FinishedEvent(TObject $Sender)
[Java]
TSBTarCompressionTarToBZip2FinishedEvent getOnCompressionTarToBZip2Finished();
void setOnCompressionTarToBZip2Finished(TSBTarCompressionTarToBZip2FinishedEvent Value);
TSBTarCompressionTarToBZip2FinishedEvent.Callback OnCompressionTarToBZip2Finished = new TSBTarCompressionTarToBZip2FinishedEvent.Callback() {
public void TSBTarCompressionTarToBZip2FinishedEventCallback(TObject Sender) {
//...
}
}
Description
This event is fired by TElTarWriter when it has finished bzip2 compression.
Discuss this help topic in SecureBlackbox Forum