tbf/TBF/BenchControl/GenericDevices/IResultsPrinter.cs

16 lines
370 B
C#

///
/// Copyright (c) 2013-2020 Sensus Slovensko a.s.
///
namespace TBF.BenchControl.GenericDevices
{
public interface IResultsPrinter : IResultsProcessor
{
/// <summary>
/// When true printing at the end of cycle is bypassed.
/// Can be used to disable printing without having to modify all procedures.
/// </summary>
bool SupressPrinting { get; }
}
}