Accusoft.Forms1 - Updated
TotalFieldsTime Property



Accusoft.Forms Namespace > FormTimingResult Class : TotalFieldsTime Property
Gets or sets a value indicating the total amount of processor time spent processing fields on the form.
Syntax
Public Property TotalFieldsTime As TimeSpan
Dim instance As FormTimingResult
Dim value As TimeSpan
 
instance.TotalFieldsTime = value
 
value = instance.TotalFieldsTime
public TimeSpan TotalFieldsTime {get; set;}
public:
property TimeSpan TotalFieldsTime {
   TimeSpan get();
   void set (    TimeSpan value);
}
Remarks

This value is the summation of all time spent in all threads processing fields.

For serial processing, a timer is started before any work is done to process the first field and the timer is stopped after all work is done processing the last field.

For parallel processing, there is a delegate for processing each field, a timer is started at the beginning of this delegate and stopped at the end. The total time is summation of time between “entering” and “exiting” each delegate.

See Also

Reference

FormTimingResult Class
FormTimingResult Members
ElapsedTime Property
FieldTimingResult Class