Search
DiagramView.InplaceEditFont Property
See Also
 





Gets or sets the font of the inplace-edit text box.

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

 Syntax

C#  Copy Code

public Font InplaceEditFont { get; set; }

Visual Basic  Copy Code

Public Property InplaceEditFont As Font

 Property Value

An instance of the .NET Font class.

 Remarks

When inplace-editing starts, MindFusion.Diagramming creates a new TextBox control over the edited item, unless you handle the CreateEditControl event to create a custom editor. InplaceEditFont is assigned to the Font property of that text box.

 See Also