Enum RubberBandSelectionMode
Defines how to handle the selected items via rubber band selection.
Namespace: Syncfusion.Blazor.Diagram
Assembly: Syncfusion.Blazor.dll
Syntax
public enum RubberBandSelectionMode
Examples
<SfDiagramComponent SelectionSettings="@select" Height="600px" />
@code
{
protected override void OnInitialized()
{
DiagramSelectionSettings select = new DiagramSelectionSettings() {RubberBandSelectionMode= RubberBandSelectionMode.CompleteIntersect};
}
}
Fields
| Name | Description |
|---|---|
| CompleteIntersect | Selects the objects that are contained within the selected region. |
| PartialIntersect | Selects the objects that are partially intersected with the selected region. |