CompositeActivityDesigner.CanInsertActivities Method

Definition

Returns a value that indicates whether activities can be inserted into the composite activity associated with the designer.

public virtual bool CanInsertActivities (System.Workflow.ComponentModel.Design.HitTestInfo insertLocation, System.Collections.ObjectModel.ReadOnlyCollection<System.Workflow.ComponentModel.Activity> activitiesToInsert);

Parameters

insertLocation
HitTestInfo

The location to insert the activities.

activitiesToInsert
ReadOnlyCollection<Activity>

A read-only array of Activity to insert.

Returns

true if activities can be inserted into the composite activity associated with the designer; otherwise false.

Examples

The following example shows how to lock a CompositeActivityDesigner by not allowing the insertion of child activities.

public override bool CanInsertActivities(HitTestInfo insertLocation, ReadOnlyCollection<Activity> activitiesToInsert)
{
    return false;
}

Remarks

Use CanInsertActivities to determine if a list of activities can be inserted into a composite activity.

Applies to

Product Versions
.NET Framework 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1