ProgressEventHandlerInfo Class |
Namespace: Aspose.Imaging.ProgressManagement
The ProgressEventHandlerInfo type exposes the following members.
Name | Description | |
---|---|---|
![]() | Description |
Gets the description of the event
|
![]() | EventType |
Gets the type of the event.
|
![]() | MaxValue |
Gets the upper progress value limit.
|
![]() | Value |
Gets current progress value.
|
Name | Description | |
---|---|---|
![]() | Equals | Determines whether the specified Object is equal to the current Object. (Inherited from Object.) |
![]() | Finalize | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object.) |
![]() | GetHashCode | Serves as a hash function for a particular type. (Inherited from Object.) |
![]() | GetType | Gets the type of the current instance. (Inherited from Object.) |
![]() | MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object.) |
![]() | ToString | Returns a string that represents the current object. (Inherited from Object.) |
[C#] public void Test3460() { string dir = "c:\\aspose.imaging\\net\\issues\\3460"; string fileName = System.IO.Path.Combine(dir, "big.png"); // Example of use of separate operation progress event handlers for load/export operations using (var image = Aspose.Imaging.Image.Load(fileName, new Aspose.Imaging.LoadOptions { ProgressEventHandler = ProgressCallback })) { image.Save(fileName + ".psd", new Aspose.Imaging.ImageOptions.PsdOptions() { ProgressEventHandler = ExportProgressCallback }); } } private void ProgressCallback(Aspose.Imaging.ProgressManagement.ProgressEventHandlerInfo info) { System.Console.WriteLine("{0} : {1}/{2}", info.EventType, info.Value, info.MaxValue); } private void ExportProgressCallback(Aspose.Imaging.ProgressManagement.ProgressEventHandlerInfo info) { System.Console.WriteLine("Export event {0} : {1}/{2}", info.EventType, info.Value, info.MaxValue); } // The STDOUT log may look like this: //Initialization : 1/4 //PreProcessing : 2/4 //Processing : 3/4 //Finalization : 4/4 //Export event Initialization : 1/4 //Export event PreProcessing : 2/4 //Export event Processing : 3/4 //Export event RelativeProgress : 1/1 //RelativeProgress : 1/1 //Export event Finalization : 4/4