drdConstraintItemClicked
drdConstraintItemClicked(
t_constraintName
x_columnIndex
x_stateValue
w_windowId
)
=> t / nil
Description
Toggles the state of a constraint for different checking modes, that is, Enforce, Notify, Post-Edit, and Batch, on the Filters tab of the DRD Options form.
Arguments
Value Returned
Examples
drdConstraintItemClicked("maxNumCorners" 2 2 window(2))
It enables the Notify checking mode for the maxNumCorners constraint.
drdConstraintItemClicked("maxNumCorners" 2 0 window(2))
It disables the Notify checking mode for the maxNumCorners constraint.
drdConstraintItemClicked("maxNumCorners" 3 0 window(2))
It disables the Post-Edit checking mode for the maxNumCorners constraint.
drdConstraintItemClicked("maxNumCorners" 4 2 window(2))
It enables the Batch checking mode for the maxNumCorners constraint.
Return to top