2014-04-21 04:57:38 +08:00
|
|
|
|
using NTwain.Data;
|
|
|
|
|
using NTwain.Internals;
|
2014-04-03 07:01:21 +08:00
|
|
|
|
|
|
|
|
|
namespace NTwain.Triplets
|
|
|
|
|
{
|
2014-04-05 10:19:16 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Represents <see cref="DataArgumentType.XferGroup"/>.
|
|
|
|
|
/// </summary>
|
2014-04-03 07:01:21 +08:00
|
|
|
|
public sealed class XferGroup : OpBase
|
|
|
|
|
{
|
2014-04-06 04:48:28 +08:00
|
|
|
|
internal XferGroup(ITwainStateInternal session) : base(session) { }
|
2014-04-05 06:51:44 +08:00
|
|
|
|
|
2014-04-03 07:01:21 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Returns the Data Group (the type of data) for the upcoming transfer. The Source is required to
|
|
|
|
|
/// only supply one of the DGs specified in the SupportedGroups field of origin.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="value">The value.</param>
|
|
|
|
|
/// <returns></returns>
|
2014-04-07 04:25:48 +08:00
|
|
|
|
public ReturnCode Get(ref DataGroups value)
|
2014-04-03 07:01:21 +08:00
|
|
|
|
{
|
2014-04-05 06:51:44 +08:00
|
|
|
|
Session.VerifyState(4, 6, DataGroups.Control, DataArgumentType.XferGroup, Message.Get);
|
2014-04-16 18:53:05 +08:00
|
|
|
|
return Dsm.DsmEntry(Session.AppId, Session.SourceId, DataGroups.Control, DataArgumentType.XferGroup, Message.Get, ref value);
|
2014-04-03 07:01:21 +08:00
|
|
|
|
}
|
|
|
|
|
|
2014-04-05 06:51:44 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// The transfer group determines the kind of data being passed from the Source to the Application.
|
|
|
|
|
/// By default a TWAIN Source must default to DG_IMAGE. Currently the only other data group
|
|
|
|
|
/// supported is DG_AUDIO, which is a feature supported by some digital cameras.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="value">The value.</param>
|
|
|
|
|
/// <returns></returns>
|
2014-04-07 04:25:48 +08:00
|
|
|
|
public ReturnCode Set(DataGroups value)
|
2014-04-03 07:01:21 +08:00
|
|
|
|
{
|
|
|
|
|
Session.VerifyState(6, 6, DataGroups.Control, DataArgumentType.XferGroup, Message.Set);
|
2014-04-16 18:53:05 +08:00
|
|
|
|
return Dsm.DsmEntry(Session.AppId, Session.SourceId, DataGroups.Control, DataArgumentType.XferGroup, Message.Set, ref value);
|
2014-04-03 07:01:21 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|