using NTwain.Triplets; using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace NTwain { /// /// Interface for providing TWAIN triplet access. /// public interface ITripletControl { /// /// Gets the triplet operations defined for control data group. /// DGControl DGControl { get; } /// /// Gets the triplet operations defined for image data group. /// DGImage DGImage { get; } /// /// Gets the direct triplet operation entry for custom values. /// DGCustom DGCustom { get; } } }