VStatsReset Method

Description
Resets vision statistics for a specified sequence in the current project.

Syntax
Sub VStatsReset (Sequence As String)

Parameters

  • Sequence
    A string expression indicating the vision sequence name for the current project.

Remarks
VStatsReset resets the statistics for the specified sequence in memory only for the current Epson RC+ 8.0 session. You should execute VStatsSave if you want changes to be permanent. Otherwise, if you restart Epson RC+ 8.0, the statistics are restored from disk.

See Also
VStatsResetAll Method, VStatsShow Method, VStatsSave Method

VStatsReset Example
VB Example:

Sub btnResetStats_Click()  
    m_spel.VStatsReset("seq01")  
End Sub  

C# Example:

void btnResetStats_Click(object sender, EventArgs e)  
{  
m_spel.VStatsReset("seq01");}