naps2/NAPS2.Wia/WiaPropertyFlags.cs
2020-01-31 22:54:22 -05:00

18 lines
304 B
C#

using System;
namespace NAPS2.Wia
{
[Flags]
public enum WiaPropertyFlags
{
Empty = 0,
Read = 0x1,
Write = 0x2,
ReadWrite = Read | Write,
None = 0x8,
Range = 0x10,
List = 0x20,
Flag = 0x40,
Cacheable = 0x10000
}
}