namespace NTwain
{
///
/// Indicates how the source should be enabled in a TWAIN session.
///
public enum SourceEnableMode
{
///
/// Start acquiring without driver UI.
///
NoUI,
///
/// Start acquiring with driver UI.
///
ShowUI,
///
/// Show driver UI for settings change but no acquisition.
///
ShowUIOnly
}
}