FreeformActivityDesigner.SendToBack(ActivityDesigner) Method

Definition

Sets the specified ActivityDesigner to the bottom of the z-order of the FreeformActivityDesigner.

public:
 void SendToBack(System::Workflow::ComponentModel::Design::ActivityDesigner ^ containedDesigner);
public void SendToBack (System.Workflow.ComponentModel.Design.ActivityDesigner containedDesigner);
member this.SendToBack : System.Workflow.ComponentModel.Design.ActivityDesigner -> unit
Public Sub SendToBack (containedDesigner As ActivityDesigner)

Parameters

containedDesigner
ActivityDesigner

The ActivityDesigner to set to the back of the z-order.

Exceptions

containedDesigner contains a null reference (Nothing in Visual Basic).

containedDesigner is not found in the ContainedDesigners collection.

Remarks

SendToBack modifies the z-order for the FreeformActivityDesigner to display the specified ActivityDesigner as the bottom visible designer on the design surface. You can use this method to display a designer at the bottom of the z-order when a user deselects it.

containedDesigner must be in a child of the FreeformActivityDesigner before you call SendToBack. If it is not, SendToBack throws an ArgumentException.

Applies to