VStatsShow Method
Description
Displays the vision statistics dialog for a specified sequence in the current project.
Syntax
Sub VStatsShow (Sequence As String, Parent As Form)
Parameters
- Sequence
A string expression indicating the vision sequence name for the current project.

See Also
VStatsReset Method, VStatsResetAll Method, VStatsSave Method
VStatsShow Example
VB Example:
Sub btnShowStats_Click()
m_spel.VStatsShow("seq01")
End Sub
C# Example:
void btnShowStats_Click(object sender, EventArgs e)
{
m_spel.VStatsShow("seq01");
}