2014-04-02 19:13:15 -04:00
|
|
|
|
using NTwain.Data;
|
2014-04-02 19:01:21 -04:00
|
|
|
|
using NTwain.Values;
|
|
|
|
|
|
using System;
|
|
|
|
|
|
|
|
|
|
|
|
namespace NTwain.Triplets
|
|
|
|
|
|
{
|
2014-04-04 22:19:16 -04:00
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Represents <see cref="DataArgumentType.CieColor"/>.
|
|
|
|
|
|
/// </summary>
|
2014-04-02 19:01:21 -04:00
|
|
|
|
public sealed class CieColor : OpBase
|
|
|
|
|
|
{
|
2014-04-05 16:48:28 -04:00
|
|
|
|
internal CieColor(ITwainStateInternal session) : base(session) { }
|
2014-04-02 19:01:21 -04:00
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// This operation causes the Source to report the currently active parameters to be used in
|
|
|
|
|
|
/// converting acquired color data into CIE XYZ.
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
/// <param name="cieColor">Color data.</param>
|
|
|
|
|
|
/// <returns></returns>
|
|
|
|
|
|
public ReturnCode Get(out TWCieColor cieColor)
|
|
|
|
|
|
{
|
|
|
|
|
|
Session.VerifyState(4, 6, DataGroups.Image, DataArgumentType.CieColor, Message.Get);
|
|
|
|
|
|
cieColor = new TWCieColor();
|
2014-04-16 06:53:05 -04:00
|
|
|
|
return Dsm.DsmEntry(Session.AppId, Session.SourceId, Message.Get, cieColor);
|
2014-04-02 19:01:21 -04:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|