2014-04-03 07:13:15 +08:00
|
|
|
|
using NTwain.Data;
|
2014-04-21 04:57:38 +08:00
|
|
|
|
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.CustomDSData"/>.
|
|
|
|
|
/// </summary>
|
2014-04-03 07:01:21 +08:00
|
|
|
|
public sealed class CustomDSData : OpBase
|
|
|
|
|
{
|
2014-04-06 04:48:28 +08:00
|
|
|
|
internal CustomDSData(ITwainStateInternal session) : base(session) { }
|
2014-04-03 07:01:21 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// This operation is used by the application to query the data source for its current settings, e.g.
|
|
|
|
|
/// DPI, paper size, color format. The actual format of the data is data source dependent and not
|
|
|
|
|
/// defined by TWAIN.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="customData">The custom data.</param>
|
|
|
|
|
/// <returns></returns>
|
|
|
|
|
public ReturnCode Get(out TWCustomDSData customData)
|
|
|
|
|
{
|
|
|
|
|
Session.VerifyState(4, 4, DataGroups.Control, DataArgumentType.CustomDSData, Message.Get);
|
|
|
|
|
customData = new TWCustomDSData();
|
2014-04-16 18:53:05 +08:00
|
|
|
|
return Dsm.DsmEntry(Session.AppId, Session.SourceId, Message.Get, customData);
|
2014-04-03 07:01:21 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// This operation is used by the application to set the current settings for a data source to a
|
|
|
|
|
/// previous state as defined by the data contained in the customData data structure. The actual
|
|
|
|
|
/// format of the data is data source dependent and not defined by TWAIN.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="customData">The custom data.</param>
|
|
|
|
|
/// <returns></returns>
|
|
|
|
|
public ReturnCode Set(TWCustomDSData customData)
|
|
|
|
|
{
|
|
|
|
|
Session.VerifyState(4, 4, DataGroups.Control, DataArgumentType.CustomDSData, Message.Set);
|
2014-04-16 18:53:05 +08:00
|
|
|
|
return Dsm.DsmEntry(Session.AppId, Session.SourceId, Message.Set, customData);
|
2014-04-03 07:01:21 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|