Search
DiagramView.BeginEdit Method
See Also
 





Enters inplace-edit mode, letting the user edit the text of the specified item.

Namespace: MindFusion.Diagramming.Blazor
Assembly: MindFusion.Diagramming.Blazor

 Syntax

C#  Copy Code

public void BeginEdit (
    DiagramItem item,
    InplaceEditable editable,
    Point mousePosition
)

Visual Basic  Copy Code

Public Sub BeginEdit( _
    item As DiagramItem, _
    editable As InplaceEditable, _
    mousePosition As Point _
)

 Parameters

item

The diagram item whose text should be edited.

editable

The element that should be edited (e.g. table cell or supplementary label).

mousePosition

A Point specifying where the in-place edit box should appear.

 Remarks

If AllowInplaceEdit is enabled, the user can start editing the text of an item by double-clicking the item.

 See Also