AddTupleFailed()
Method allowing you to fill in the list
used to generate the report of failed checks. |
AddTupleSucceeded()
Method allowing you to fill in the list
used to generate the report of succeeded checks.
Example
Variables : H:Hole;P:Part
Body : if (H.Diameter > 5mm)
ThisCheck > AddTupleFailed(H,P)
Note that the tuple H,P is added to the report. Each
call to method addTupleFailed or AddTupleSucceeded adds a line
to the report.
|
CorrectFunction
Enables you to modify the string contained
in the Correct tab of the Expert Check Editor. |
AddTupleFailedWithCommen
Method allowing you to fill in the list used to generate the
report of failed checks with a comment.
Arguments:
- Comment: comment added to failed tuples
- Features: failed tuples (variable argument )
Example :
Variables: H:Hole;P:Part
ThisCheck->AddTupleFailedWithComment(Hole and Pad are failed,H,P)
|
AddTupleSucceededWithComment
Method allowing you to fill in the list used to generate the
report of succeeded checks with a comment.
Arguments:
- Comment : Comment added to succeeded tuples
- Features : Succeeded tuples (variable argument )
Example:
Variables: H:Hole;P:Part
ThisCheck->AddTupleSucceededWithComment(Hole and Pad is failed,H,P)
|
AddTupleFailedWithName Method allowing you to fill in the list used to generate the
report of failed checks with a comment and a name. You can change
the tuple name.
Arguments :
- Name: Name displaying into the immersive report.
- Comment : Comment added to failed tuples
- Features : Failed tuples (variable argument )
Example :
Variables: H:Hole;P:Part
ThisCheck->AddTupleFailedWithName(Tuple Failed,Hole and Pad
is failed,H,P)
|
AddTupleSucceededWithName
Method allowing you to fill in the list used to generate the
report of succeeded checks with a comment and a name. You can
change the tuple name.
Arguments :
- Name : name displaying into the immersive report.
- Comment : comment added to succeeded tuples
- Features : succeeded tuples (variable argument )
Example :
Variables: H:Hole;P:Part
ThisCheck->AddTupleSucceededWithName(Tuple Succeeded,Hole
and Pad is succeeded,H,P)
|
CorrectFunctionComment
Enables you to modify the correct function
comment in the Expert Check Editor. |
CorrectFunctionType
Real enabling you to modify the type of
the correct function in the Check Editor. |
Help
Enables you to modify the help message in
the Check editor. |