OEEEventArgs Constructor
- Last UpdatedNov 06, 2025
- 1 minute read
The OEEEventArgs() method is the constructor for the OEEEventArgs class.
'Declaration
Public Function New( _
ByVal entID As Integer, _
ByVal targetOEE As Double, _
ByVal targetPerf As Double, _
ByVal targetQual As Double, _
ByVal currentOEE As Double, _
ByVal currentPerf As Double, _
ByVal currentQual As Double _
)
public OEEEventArgs(
int entID,
double targetOEE,
double targetPerf,
double targetQual,
double currentOEE,
double currentPerf,
double currentQual
)
Parameters
- entID
- Required. Holds the ID of the entity.
- targetOEE
- Required. Holds the target OEE value.
- targetPerf
- Required. Holds the target performance value.
- targetQual
- Required. Holds the target quality value.
- currentOEE
- Required. Holds the current OEE value.
- currentPerf
- Required. Holds the current performance value.
- currentQual
- Required. Holds the current quality value.