Class ProgressEventArgs
Progress event for progress indicators.
Inheritance
Object
EventArgs
ProgressEventArgs
Inherited Members
EventArgs.Empty
Object.Equals(Object)
Object.Equals(Object, Object)
Object.ReferenceEquals(Object, Object)
Object.GetHashCode()
Object.GetType()
Object.MemberwiseClone()
Namespace: Sdl.FileTypeSupport.Framework.NativeApi
Assembly: Sdl.FileTypeSupport.Framework.Core.dll
Syntax
public class ProgressEventArgs : EventArgs
Constructors
ProgressEventArgs(Byte)
Progress is a percentage values from 0 (start) up to and including 100 (complete).
Declaration
public ProgressEventArgs(byte value)
Parameters
| Type | Name | Description |
|---|---|---|
| Byte | value | Values 0 - 100 (inclusive) are accepted. |
Exceptions
| Type | Condition |
|---|---|
| System.OverflowException | thown if the percentag value is larger than 100. |
Properties
ProgressValue
A progress value between 0 and 100
Declaration
public byte ProgressValue { get; }
Property Value
| Type | Description |
|---|---|
| Byte |
Methods
ToString()
For debugging, shows the percentage value.
Declaration
public override string ToString()
Returns
| Type | Description |
|---|---|
| String |
Overrides
System.Object.ToString()