Accusoft.ImagXpressSdk Namespace > Processor Class : ProgressPercent Property |
'Declaration <DescriptionAttribute("Gets and sets the ProgressEvent frequency.")> <BrowsableAttribute(True)> <DefaultValueAttribute()> <DesignerSerializationVisibilityAttribute(DesignerSerializationVisibility.Visible)> Public Property ProgressPercent As Integer
'Usage Dim instance As Processor Dim value As Integer instance.ProgressPercent = value value = instance.ProgressPercent
[DescriptionAttribute("Gets and sets the ProgressEvent frequency.")] [BrowsableAttribute(true)] [DefaultValueAttribute()] [DesignerSerializationVisibilityAttribute(DesignerSerializationVisibility.Visible)] public int ProgressPercent {get; set;}
[DescriptionAttribute("Gets and sets the ProgressEvent frequency.")] [BrowsableAttribute(true)] [DefaultValueAttribute()] [DesignerSerializationVisibilityAttribute(DesignerSerializationVisibility.Visible)] public: __property int get_ProgressPercent(); public: __property void set_ProgressPercent( int value );
[DescriptionAttribute("Gets and sets the ProgressEvent frequency.")] [BrowsableAttribute(true)] [DefaultValueAttribute()] [DesignerSerializationVisibilityAttribute(DesignerSerializationVisibility.Visible)] public: property int ProgressPercent { int get(); void set ( int value); }
An integer value which represents the frequency of the ProgressEvent event.
Valid values are 1 to 100.
Lower values indicate more frequent events and higher value indicate less frequent events.
This property specifies the frequency at which the ProgressEvent fires and yields occur based on the percentage of completion of the load, save, or image processing operation.
For example; when this property is set to a value of 25, the control yields and issues a Progress event when the operation achieves:
Depending upon the process ran, the Progress Event's pctDone parameter may start at a value other than zero, for example, one or two. And due to rounding errors, the increment may not be exactly the value of ProgressPct. For example, if ProgressPct is 10, the increments may be eleven or twelve.