using NTwain.Data; using NTwain.Internals; namespace NTwain.Triplets { /// /// Represents . /// public sealed class Capability : OpBase { internal Capability(ITwainStateInternal session) : base(session) { } /// /// Returns the Source’s Current, Default and Available Values for a specified capability. /// /// The capability. /// public ReturnCode Get(TWCapability capability) { Session.VerifyState(4, 7, DataGroups.Control, DataArgumentType.Capability, Message.Get); return Dsm.DsmEntry(Session.AppId, Session.SourceId, Message.Get, capability); } /// /// Returns the Source’s Current Value for the specified capability. /// /// The capability. /// public ReturnCode GetCurrent(TWCapability capability) { Session.VerifyState(4, 7, DataGroups.Control, DataArgumentType.Capability, Message.GetCurrent); return Dsm.DsmEntry(Session.AppId, Session.SourceId, Message.GetCurrent, capability); } /// /// Returns the Source’s Default Value. This is the Source’s preferred default value. /// /// The capability. /// public ReturnCode GetDefault(TWCapability capability) { Session.VerifyState(4, 7, DataGroups.Control, DataArgumentType.Capability, Message.GetDefault); return Dsm.DsmEntry(Session.AppId, Session.SourceId, Message.GetDefault, capability); } /// /// Returns help text suitable for use in a GUI; for instance: "Specify the amount of detail in an /// image. Higher values result in more detail." for ICapXRESOLUTION. /// /// The capability. /// public ReturnCode GetHelp(TWCapability capability) { Session.VerifyState(4, 4, DataGroups.Control, DataArgumentType.Capability, Message.GetHelp); return Dsm.DsmEntry(Session.AppId, Session.SourceId, Message.GetHelp, capability); } /// /// Returns a label suitable for use in a GUI, for instance "Resolution:" /// for ICapXRESOLUTION. /// /// The capability. /// public ReturnCode GetLabel(TWCapability capability) { Session.VerifyState(4, 4, DataGroups.Control, DataArgumentType.Capability, Message.GetLabel); return Dsm.DsmEntry(Session.AppId, Session.SourceId, Message.GetLabel, capability); } /// /// Return all of the labels for a capability of type or , for example /// "US Letter" for ICapSupportedSizes’ TWSS_USLETTER. /// /// The capability. /// public ReturnCode GetLabelEnum(TWCapability capability) { Session.VerifyState(4, 4, DataGroups.Control, DataArgumentType.Capability, Message.GetLabelEnum); return Dsm.DsmEntry(Session.AppId, Session.SourceId, Message.GetLabelEnum, capability); } /// /// Returns the Source’s support status of this capability. /// /// The capability. /// public ReturnCode QuerySupport(TWCapability capability) { Session.VerifyState(4, 7, DataGroups.Control, DataArgumentType.Capability, Message.QuerySupport); return Dsm.DsmEntry(Session.AppId, Session.SourceId, Message.QuerySupport, capability); } /// /// Change the Current Value of the specified capability back to its power-on value and return the /// new Current Value. /// /// The capability. /// public ReturnCode Reset(TWCapability capability) { Session.VerifyState(4, 4, DataGroups.Control, DataArgumentType.Capability, Message.Reset); return Dsm.DsmEntry(Session.AppId, Session.SourceId, Message.Reset, capability); } /// /// This command resets all of the current values and constraints to their defaults for all of the /// negotiable capabilities supported by the driver. /// /// The capability. /// public ReturnCode ResetAll(TWCapability capability) { Session.VerifyState(4, 4, DataGroups.Control, DataArgumentType.Capability, Message.ResetAll); return Dsm.DsmEntry(Session.AppId, Session.SourceId, Message.ResetAll, capability); } /// /// Changes the Current Value(s) and Available Values of the specified capability to those specified /// by the application. As of TWAIN 2.2 this only modifies the Current Value of the specified capability, constraints cannot be /// changed with this. /// Current Values are set when the container is a or . Available and /// Current Values are set when the container is a or . /// /// The capability. /// public ReturnCode Set(TWCapability capability) { Session.VerifyState(4, 6, DataGroups.Control, DataArgumentType.Capability, Message.Set); return Dsm.DsmEntry(Session.AppId, Session.SourceId, Message.Set, capability); } /// /// Changes the Current Value(s) and Available Value(s) of the specified capability to those specified /// by the application. /// /// Current Values are set when the container is a or . Available and /// Current Values are set when the container is a or . /// The capability. /// public ReturnCode SetConstraint(TWCapability capability) { Session.VerifyState(4, 7, DataGroups.Control, DataArgumentType.Capability, Message.SetConstraint); return Dsm.DsmEntry(Session.AppId, Session.SourceId, Message.SetConstraint, capability); } } }