Dropdown Properties
Last updated
Was this helpful?
Last updated
Was this helpful?
The size of the kernel that is used to blur the images when detecting the changes to define the list rectangle. Size 0 means no blur, a common value for moderate blurring is 8 (approx. the size of a character). Default: 0
Syntax: public int BlurKernelForDetectChanges { get; set; }
The image detection parameters that are used to find an image entry in the dropdown list.
Syntax: public ImageDetectionParameters DropdownListImageParas { get; }
The OCR parameters that are used to find a text entry in the dropdown list. By default also these paras are used to verify a selected element, but can be set separately.
Syntax: public OcrEngineParameters DropdownListOcrParas { get; }
Width of the border of the list that will be cut away on all sides to remove a border from the image that is passed to the OCR algorithm. Default: 3
Syntax: public int ListBorder { get; set; }
Determines whether the mouse should be moved in the middle of the dropdown list in order to focus the scroller of the list. Can cause problems with list entries that have tooltips. Default: false
Syntax: public bool MoveMouseListAfterOpen { get; set; }
Syntax: public Select SearchRectangleForList { get; set; }
The tolerance value for changes that shall be ignored when detecting the changes to define the list rectangle. Default 0.04
Syntax: public double ToleranceForDetectChanges { get; set; }
The search rectangle in which changes are detected to define the list rectangle. Default:
Textbox of the dropdown. Is also used to define the dropdown list rectangle. Rectangle of TextBox is defined when first used by visible closed border around the of the provided image.
Syntax: public
TextBox { get; }
The dropdown button used to open the dropdownList. Either coming from provided buttonImage in Dropdown or just the itself (works in most dropdowns).
Syntax: public
DropdownButton { get; }