RanorexRanorex Documentation
Default Property
NamespacesRanorexImaging..::.FindOptionsDefault
Gets or set the default options for image find methods.
Declaration Syntax
C#Visual BasicVisual C++
public static Imaging..::.FindOptions Default { get; set; }
Public Shared Property Default As Imaging..::.FindOptions
public:
static property Imaging..::.FindOptions^ Default {
	Imaging..::.FindOptions^ get ();
	void set (Imaging..::.FindOptions^ value);
}
Remarks
Change the default options by assigning a new instance to this property. Changing a property value on the instance returned by this property won't change the default options, but only the returned instance; i.e.
CopyC#
Ranorex.Imaging.FindOptions.Default.Similarity = 0.95;
won't change the default value for Similarity, but the following line will:
CopyC#
Ranorex.Imaging.FindOptions.Default = new Ranorex.Imaging.FindOptions(0.95);
Exceptions
ExceptionCondition
ArgumentNullExceptionIf setting this property to null.

Assembly: Ranorex.Core (Module: Ranorex.Core) Version: 3.2.3.16825 (3.2.3.16825)