Search
DiagramView.BeginEdit Method (InplaceEditable)
See Also
 





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

Namespace: MindFusion.Diagramming.WinForms
Assembly: MindFusion.Diagramming.WinForms

 Syntax

C#  Copy Code

public void BeginEdit (
    InplaceEditable item
)

Visual Basic  Copy Code

Public Sub BeginEdit( _
    item As InplaceEditable _
)

 Parameters

item

The diagram item or table's cell whose text should be edited.

 Remarks

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

By default, MindFusion.Diagramming displays a TextBox control to let the user enter text. You can create a custom editor by handling the CreateEditControl event.

 See Also