FlowStep.Next 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
public:
property System::Activities::Statements::FlowNode ^ Next { System::Activities::Statements::FlowNode ^ get(); void set(System::Activities::Statements::FlowNode ^ value); };
[System.Windows.Markup.DependsOn("Action")]
public System.Activities.Statements.FlowNode Next { get; set; }
[<System.Windows.Markup.DependsOn("Action")>]
member this.Next : System.Activities.Statements.FlowNode with get, set
Public Property Next As FlowNode
屬性值
指定的元素。
- 屬性
範例
下列程式碼範例將示範如何使用 FlowStep 節點的 Next 屬性。 此範例來自 使用 TryCatch 範例的流程圖活動中的錯誤處理 。
FlowStep singleStep = new FlowStep
{
Action = new Assign
{
DisplayName = "discount = 10.0",
To = new OutArgument<double> (discount),
Value = new InArgument<double> (10.0)
},
Next = flowDecision
};