Some text and eximageinfo correctness update.

This commit is contained in:
soukoku
2014-05-23 18:41:18 -04:00
parent 3b31c465e6
commit b0142127d7
12 changed files with 155 additions and 61 deletions

View File

@@ -17,6 +17,9 @@ namespace NTwain.Data
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Design", "CA1028:EnumStorageShouldBeInt32")]
public enum ContainerType : ushort
{
/// <summary>
/// The default value for this enum.
/// </summary>
Invalid = 0,
/// <summary>
/// The container is <see cref="TWArray"/>.
@@ -34,6 +37,9 @@ namespace NTwain.Data
/// The container is <see cref="TWRange"/>.
/// </summary>
Range = 6,
/// <summary>
/// The don't care value.
/// </summary>
DontCare = TwainConst.DontCare16,
}