Interface IWorkTimeAttrib
Interface for objects that provide both read and write access to work time. Combines the functionality of IWorkTimeGetter and IWorkTimeSetter.
public interface IWorkTimeAttrib
- Extension Methods
Remarks
This interface is used when:
- Both reading and writing work time is needed
- Full time tracking functionality is required
- The object needs to both monitor and control time
Common implementations include:
- Machining operation controllers
- Time tracking components
- Process monitoring systems
Properties
WorkTime_s
Gets or sets the work time in seconds.
double WorkTime_s { get; set; }
Property Value
Remarks
This property provides:
- Read access to current work time
- Write access to update work time
- Time values are in seconds
- Should maintain time continuity when updated