Visresult_Object Info Property

Returns a Double value from the vision result object's numeric information array.
...visresult_object.Info( index )

Prerequisites

None

Parameters

index

A required numeric expression that specifies the array index for the information element that is to be returned. The first array element has an index of 0.  This parameter must have a value greater than or equal to zero.

Remarks

The common results values returned from the Vision Tools are accessed via standard properties of the VisResults Objects, e.g. the position and orientation of the results are available from visresult_object.Loc. However, some tools return special numeric data that is specific to the tool.  For example, the Finder Tool returns the X and Y scale factors for the parts that it has located. This type of tool specific information is returned in the visresult_object.Info array property. For information on what data a tool returns in this property and the index of the data, please consult the "PreciseVision Machine Vision System, Introduction and Reference Manual". In the detailed descriptions for each tool, properties that are returned in the Info array and their array index values are highlighted.

Examples

Dim vresult As VisResult
vresult = vobject.Result() ' Get a tool's results
If
vresult.Info(2) > .5 Then

See Also

Vision Classes | visresult_object.InfoCount | visresult_object.InfoString | visresult_object.Type