Vsave Method
Description
Saves all vision data in the current project.
Syntax
Sub VSave ()
Remarks
Use VSave to make any changes to vision properties permanent.
See Also
VSet Method
VSaveImage Example
VB Examples:
With m_spel
.VSet("seq01", "blob01", "SearchWinLeft", 100)
.VSet("seq01", "corr01", "Accept", userAccept)
.VSave()
End With
C# Example:
m_spel.VSet("seq01", "blob01", "SearchWinLeft", 100);
m_spel.VSet("seq01", "corr01", "Accept", userAccept);
m_spel.VSave();