Dart.PowerTCP.Zip Namespace > Archive Class : SpanProgress Event |
<ObsoleteAttribute("SpanProgress is no longer used. The Progress event should be used instead.")> <CategoryAttribute("Progress")> <DescriptionAttribute("Raised to report the progress of copying a spanned archive to removeable media.")> Public Event SpanProgress As SpanProgressEventHandler
Dim instance As Archive Dim handler As SpanProgressEventHandler AddHandler instance.SpanProgress, handler
[Obsolete("SpanProgress is no longer used. The Progress event should be used instead.")] [Category("Progress")] [Description("Raised to report the progress of copying a spanned archive to removeable media.")] public event SpanProgressEventHandler SpanProgress
[Obsolete("SpanProgress is no longer used. The Progress event should be used instead.")] [Category("Progress")] [Description("Raised to report the progress of copying a spanned archive to removeable media.")] public: __event SpanProgressEventHandler* SpanProgress
[Obsolete("SpanProgress is no longer used. The Progress event should be used instead.")] [Category("Progress")] [Description("Raised to report the progress of copying a spanned archive to removeable media.")] public: event SpanProgressEventHandler^ SpanProgress
The event handler receives an argument of type SpanProgressEventArgs containing data related to this event. The following SpanProgressEventArgs properties provide information specific to this event.
Property | Description |
---|---|
Length | The total bytes of the compressed data to be spanned. |
Position | The number of bytes that have been spanned. |
VolumeNumber | The part number or the volume number that is currently undergoing a spanning operation. |
With version 2, spanning has been integrated into zipping and unzipping, so the Archive.Progress event is adequate for reporting progress.