Class ValueAccessor
Set Values.
Inherited Members
Namespace: Evergine.Framework.Dependencies
Assembly: Evergine.Framework.dll
Syntax
public abstract class ValueAccessor
Properties
MemberName
Gets the name of the member.
Declaration
public abstract string MemberName { get; }
Property Value
Type | Description |
---|---|
string |
Type
Gets the type.
Declaration
public abstract Type Type { get; }
Property Value
Type | Description |
---|---|
Type |
Methods
GetValue(DependencyObject)
Gets the value.
Declaration
public abstract object GetValue(DependencyObject instance)
Parameters
Type | Name | Description |
---|---|---|
DependencyObject | instance | The instance. |
Returns
Type | Description |
---|---|
object | The value. |
SetValue(DependencyObject, object)
Sets the value.
Declaration
public abstract void SetValue(DependencyObject instance, object newValue)
Parameters
Type | Name | Description |
---|---|---|
DependencyObject | instance | The instance. |
object | newValue | The new value. |