条件分岐フロー アクションのコードを編集して、ルール チェーンに条件分岐の条件を挿入できます。
ユーザー インターフェイスのデフォルトでは 2 つのコード ブロックが作成されます。1 つ目のコードには条件分岐の True/False 条件が含まれており、もう 1 つのコードでは条件をチェックして Yes または No のどちらかのイベントを起動します。
' ====================================================
' The ConfigureAction function implements a branch.
' It is called with the event which triggered the rule and the action.
' ============================================================
Public Sub ConfigureAction( _
ByVal triggerEvent As Creo.PWS.Automation.PrinergyDataModel.PageApprovalChangedEvent, _
ByVal action As Creo.PWS.Automation.GenericDataModel.BranchAction)
If (Me.Condition1(triggerEvent) AndAlso Me.Condition2(triggerEvent)) Then
'This is how we make the branch trigger the "Yes" event
action.SetYes
Else
'This is how we make the branch trigger the "No" event
action.SetNo
End If
End Sub
' =============================================================
' The condition functions test the event which triggered the rule
' If it returns true the Yes branch will be taken by the ConfigureAction function.
' If it returns false the No branch will be taken.
' =============================================================
Private Function Condition1( _
ByVal item As Creo.PWS.Automation.PrinergyDataModel.PageApprovalChangedEvent) _
As Boolean
Return (item.NewApprovalState = _
Creo.PWS.Automation.PrinergyDataModelTypes.ApprovalState.Approved)
End Function
Private Function Condition2( _
ByVal item As Creo.PWS.Automation.PrinergyDataModel.PageApprovalChangedEvent) _
As Boolean
Return '<your condition here>
End Function
Overview
Content Tools