FlowStep::Action Property
.NET Framework (current version)
Namespace:
System.Activities.Statements
Assembly: System.Activities (in System.Activities.dll)
Return to top
Assembly: System.Activities (in System.Activities.dll)
Property Value
Type: System.Activities::Activity^The activity to be executed as part of this step of the flowchart.
The following code sample demonstrates using the Action property of a FlowStep node. This example is from the Fault Handling in a Flowchart Activity Using TryCatch sample.
FlowStep singleStep = new FlowStep { Action = new Assign { DisplayName = "discount = 10.0", To = new OutArgument<double> (discount), Value = new InArgument<double> (10.0) }, Next = flowDecision };
.NET Framework
Available since 4.0
Available since 4.0
Show: