alexa
menu

Blazor

  • Code Examples
  • Upgrade Guide
  • User Guide
  • Demos
  • Support
  • Forums
  • Download
Search Results for

    Show / Hide Table of Contents

    Enum DiagramElementAction

    It specifies the action to be performed in the diagram while interacting.

    Namespace: Syncfusion.Blazor.Diagram
    Assembly: Syncfusion.Blazor.dll
    Syntax
    [Flags]
    public enum DiagramElementAction
    Examples
    public string Cursor(DiagramElementAction action, bool active, string handle)
    {
        string cursors = null;
        if (action == DiagramElementAction.Drag)
        cursors = "-webkit-grabbing";
        return cursors;
    }

    Fields

    Name Description
    BezierSourceThumb

    Notifies the bezier connector source points are currently dragging.

    BezierTargetThumb

    Notifies that the bezier connector target points are currently dragging.

    ColumnResize

    Notifies that the swimlane is currently resizing the column.

    ConnectorSourceEnd

    Notifies that the connector source points are currently dragging.

    ConnectorTargetEnd

    Notifies that the connector Target points are currently dragging.

    Drag

    Notifies when the dragging is ongoing.

    Draw

    Notifies the drawing of shapes using the drawing tool.

    ExpandAndCollapse

    Notifies the Expand and collapse action when the Expand/Collapse Icon is clicked

    FixedUserHandle

    Notifies that the fixed user handle is currently active.

    Hyperlink

    Notifies the hyperlink action when the mouse pointer is hovering over it.

    None

    None of the actions are performed by the cursor.

    OrthogonalThumb

    Notifies that the connector orthogonal thumb is currently dragging.

    Pan

    Notifies that the node is currently panning.

    PinchZoom

    Notifies to interact the zoom action through touch.

    PortDraw

    Notifies the port draw action when drawing the connector from the port.

    ResizeEast

    Notifies that the node is currently resizing to east direction.

    ResizeNorth

    Notifies that the node is currently resizing to north direction.

    ResizeNorthEast

    Notifies that the node is currently resizing to north east direction.

    ResizeNorthWest

    Notifies that the node is currently resizing to north west direction.

    ResizeSouth

    Notifies that the node is currently resizing to south direction.

    ResizeSouthEast

    Notifies that the node is currently resizing to south east direction.

    ResizeSouthWest

    Notifies that the node is currently resizing to south west direction.

    ResizeWest

    Notifies that the node is currently resizing to west direction.

    Rotate

    Notifies that the node is currently rotating.

    RowResize

    Notifies that the swimlane is currently resizing the row.

    SegmentEnd

    Notifies that the connector segment endpoint is currently dragging.

    Select

    Notifies when the selection happens.

    In this article
    Back to top Generated by DocFX
    Copyright © 2001 - 2025 Syncfusion Inc. All Rights Reserved