Resets the number of all values that can be selected in PtpStatisticsSelector to 0.
Name  | 
PtpResetStatistics  | 
Category  | 
|
Interface  | 
Command  | 
Access  | 
Write  | 
Unit  | 
-  | 
Visibility  | 
Guru  | 
Values  | 
-  | 
Standard  | 
IDS  | 
Availability uEye+  | 
|
Availability uEye  | 
-  | 
Code example
C++
// Execute PtpResetStatistics
nodeMapRemoteDevice->FindNode<peak::core::nodes::CommandNode>("PtpResetStatistics")->Execute();
// Check if the command has finished before you continue (optional)
nodeMapRemoteDevice->FindNode<peak::core::nodes::CommandNode>("PtpResetStatistics")->WaitUntilDone();
C#
// Execute PtpResetStatistics
nodeMapRemoteDevice.FindNode<peak.core.nodes.CommandNode>("PtpResetStatistics").Execute();
// Check if the command has finished before you continue (optional)
nodeMapRemoteDevice.FindNode<peak.core.nodes.CommandNode>("PtpResetStatistics").WaitUntilDone();
Python
# Execute PtpResetStatistics
nodeMapRemoteDevice.FindNode("PtpResetStatistics").Execute()
# Check if the command has finished before you continue (optional)
nodeMapRemoteDevice.FindNode("PtpResetStatistics").WaitUntilDone()