Gets the cell editor that is currently active.

Namespace:  C1.Silverlight.FlexGrid
Assembly:  C1.Silverlight.FlexGrid.4 (in C1.Silverlight.FlexGrid.4.dll)

Syntax

C#
public FrameworkElement ActiveEditor { get; }
Visual Basic
Public ReadOnly Property ActiveEditor As FrameworkElement
	Get

Remarks

The most common use for this property is to determine whether the grid is currently in edit mode. If the grid is not in edit mode, this property returns null.

In most cases, the FrameworkElement element returned will be a Border element that contains the actual cell content.

See Also