Specifies whether a TypeEditor acts on a property reference (appropriate for reference types) or on a value (appropriate for value types). This is normally inferred by the editor according to the edited type, but may be overridden if required.

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

Syntax

C#
public enum TypeEditorTemplateBindingMode
Visual Basic (Declaration)
Public Enumeration TypeEditorTemplateBindingMode

Members

Member nameDescription
Default
The TypeEditor infers how to act on the property depending on whether it is a reference or a value type.
Reference
The TypeEditor considers properties of the edited type to be references. The template binds directly to properties of the edited property value.
WrappedValue
The TypeEditor considers properties of the edited type to be values. The template binds to a pseudo-property named Value.

See Also