FormSuite v6.0 - Updated
TotalFieldsTime Property




Accusoft.FormsAPI.Net Assembly > 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
'Declaration
 
Public Property TotalFieldsTime As TimeSpan
'Usage
 
Dim instance As FormTimingResult
Dim value As TimeSpan
 
instance.TotalFieldsTime = value
 
value = instance.TotalFieldsTime
public TimeSpan TotalFieldsTime {get; set;}
public: __property TimeSpan get_TotalFieldsTime();
public: __property void set_TotalFieldsTime( 
   TimeSpan value
);
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

Is this page helpful?
Yes No
Thanks for your feedback.