StructuredCompositeActivityDesigner.CanInsertActivities Method

Definition

Returns a value that indicates whether the specified activities can be added to the StructuredCompositeActivityDesigner at the specified location on the workflow design surface.

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

Parameters

insertLocation
HitTestInfo

The HitTestInfo that contains the screen location at which to attempt to insert the activities.

activitiesToInsert
ReadOnlyCollection<Activity>

The Activity read-only collection that contains the activities to add.

Returns

true if the specified activities can be inserted at the specified location on the workflow design surface; otherwise, false.

Examples

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

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

Applies to

Ürün Sürümler
.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