Indicates whether the editor can edit the value of the specified node.

Namespace:  Mindscape.WpfElements.WpfPropertyGrid
Assembly:  Mindscape.WpfElements (in Mindscape.WpfElements.dll)
Version: 3.0.0.0 (3.0.0.0)

Syntax

C#
public override bool CanEdit(
	Node node
)
Visual Basic (Declaration)
Public Overrides Function CanEdit ( _
	node As Node _
) As Boolean

Return Value

true if the editor can edit the value of this node; otherwise false.

Remarks

A TypeEditor will attempt to edit any node whose declared PropertyType is compatible with its EditedType. To prevent a TypeEditor from claiming derived types, specify a more specific TypeEditor earlier in the Editors collection.

See Also