Interface IDataBindingProperty
Represents a data binding registration
Namespace: Artemis.Core
Assembly: Artemis.Core.dll
Syntax
public interface IDataBindingProperty
Properties
DisplayName
Gets or sets the display name of the data binding registration
Declaration
string DisplayName { get; }
Property Value
Type | Description |
---|---|
string |
ValueType
Gets the type of the value this data binding registration points to
Declaration
Type ValueType { get; }
Property Value
Type | Description |
---|---|
Type |
Methods
GetValue()
Gets the value of the property this registration points to
Declaration
object? GetValue()
Returns
Type | Description |
---|---|
object | A value matching the type of ValueType |
SetValue(object)
Sets the value of the property this registration points to
Declaration
void SetValue(object value)
Parameters
Type | Name | Description |
---|---|---|
object | value | A value matching the type of ValueType |