Customize dms linker parameters on dragdrop in the dms control
public partial class wndDMS3Custom : ctrlDms3
{
public new busDMSCustom BusObj
{
get
{
return base.BusObj as busDMSCustom;
}
}
public override AutolinkParameters GetDmsLinkerParameters(System.Collections.Generic.IEnumerable<string> files)
{
var myParams = new AutolinkParameters()
{
Autolink = false,
DetectLinksUsingEmailDomain = false,
ScanBarcodes = false,
ScanBarcodesInBackground = false,
DoOcr = false,
DoOcrInBackground = false,
DetectDuplicates = false
};
Log.Info($"GetDmsLinkerParameters disabled all features.");
return myParams;
}
}Last updated