ModelItem.GetCurrentValue Method

When overridden in a derived class, returns the current value of the underlying model object the ModelItem is wrapping.

Namespace:  Microsoft.Windows.Design.Model
Assembly:  Microsoft.Windows.Design.Interaction (in Microsoft.Windows.Design.Interaction.dll)

Syntax

'Declaration
Public MustOverride Function GetCurrentValue As Object
public abstract Object GetCurrentValue()
public:
virtual Object^ GetCurrentValue() abstract
abstract GetCurrentValue : unit -> Object 
public abstract function GetCurrentValue() : Object

Return Value

Type: System.Object
Returns an object that represents the current value of the underlying model object the ModelItem is wrapping.

Remarks

You can inspect this object, but you should not make any changes to it. Changes made to the returned object will not be incorporated into the designer. The GetCurrentValue method may return either an existing or a new cloned instance of the object.

.NET Framework Security

See Also

Reference

ModelItem Class

Microsoft.Windows.Design.Model Namespace

Other Resources

WPF Designer Extensibility Architecture

Editing Model Architecture