HandleExternalEventActivity.ParameterBindings Property

Definition

Gets the collection of parameter bindings.

public:
 property System::Workflow::ComponentModel::WorkflowParameterBindingCollection ^ ParameterBindings { System::Workflow::ComponentModel::WorkflowParameterBindingCollection ^ get(); };
[System.ComponentModel.Browsable(false)]
public System.Workflow.ComponentModel.WorkflowParameterBindingCollection ParameterBindings { get; }
[<System.ComponentModel.Browsable(false)>]
member this.ParameterBindings : System.Workflow.ComponentModel.WorkflowParameterBindingCollection
Public ReadOnly Property ParameterBindings As WorkflowParameterBindingCollection

Property Value

The collection of parameter bindings.

Attributes

Examples

The following example shows how to access the ParameterBindings property. This example is from the Ordering State Machine SDK sample, from the SampleWorkflow.designer.cs file. For more information, see Ordering State Machine Sample.

public WorkflowDesignerControl()
{
    InitializeComponent();

    WorkflowTheme.CurrentTheme.ReadOnly = false;
    WorkflowTheme.CurrentTheme.AmbientTheme.ShowConfigErrors = false;
    WorkflowTheme.CurrentTheme.ReadOnly = true;
}
Public Sub New()
    InitializeComponent()

    WorkflowTheme.CurrentTheme.ReadOnly = False
    WorkflowTheme.CurrentTheme.AmbientTheme.ShowConfigErrors = False
    WorkflowTheme.CurrentTheme.ReadOnly = True
End Sub

Applies to

See also