PropertySet
A dynamic type that describes a set of properties.
Definition
Namespace:Telerik.Windows.Controls.Data.PropertyGrid
Assembly:Telerik.Windows.Controls.Data.dll
Syntax:
public class PropertySet : DynamicObject, IDynamicMetaObjectProvider, INotifyPropertyChanged, IDataErrorInfo
Inheritance: objectDynamicObjectPropertySet
Implements:
Inherited Members
Constructors
Initializes a new instance of the PropertySet class.
public PropertySet()
Initializes a new instance of the PropertySet class.
Fields
ShouldAddNullForNonMatchingValuesProperty
DependencyProperty
Represent the ShouldAddNullForNonMatchingValuesProperty attached property.
public static readonly DependencyProperty ShouldAddNullForNonMatchingValuesProperty
Properties
Gets an error message indicating what is wrong with this object.
[Browsable(false)]
public string Error { get; }
An error message indicating what is wrong with this object. The default is an empty string ("").
Implements:
Methods
Returns the enumeration of all dynamic member names.
public override IEnumerable<string> GetDynamicMemberNames()
A sequence that contains dynamic member names.
Overrides:
Gets the value of ShouldAddNullForNonMatchingValuesProperty attached property.
public static bool GetShouldAddNullForNonMatchingValues(DependencyObject element)
The object to get the property for.
Returns:Called when [property changed].
Sets the value of ShouldAddNullForNonMatchingValuesProperty attached property.
public static void SetShouldAddNullForNonMatchingValues(DependencyObject element, bool value)
The object to set the property to.
valueboolProvides the implementation for operations that get member values. Classes derived from the DynamicObject class can override this method to specify dynamic behavior for operations such as getting a value for a property.
public override bool TryGetMember(GetMemberBinder binder, out object result)
Provides information about the object that called the dynamic operation. The binder.Name property provides the name of the member on which the dynamic operation is performed. For example, for the Console.WriteLine(sampleObject.SampleProperty) statement, where sampleObject is an instance of the class derived from the DynamicObject class, binder.Name returns "SampleProperty". The binder.IgnoreCase property specifies whether the member name is case-sensitive.
resultobjectThe result of the get operation. For example, if the method is called for a property, you can assign the property value to result.
true if the operation is successful; otherwise, false. If this method returns false, the run-time binder of the language determines the behavior. (In most cases, a run-time exception is thrown.).
Overrides:
Provides the implementation for operations that set member values. Classes derived from the DynamicObject class can override this method to specify dynamic behavior for operations such as setting a value for a property.
public override bool TrySetMember(SetMemberBinder binder, object value)
Provides information about the object that called the dynamic operation. The binder.Name property provides the name of the member to which the value is being assigned. For example, for the statement sampleObject.SampleProperty = "Test", where sampleObject is an instance of the class derived from the DynamicObject class, binder.Name returns "SampleProperty". The binder.IgnoreCase property specifies whether the member name is case-sensitive.
valueobjectThe value to set to the member. For example, for sampleObject.SampleProperty = "Test", where sampleObject is an instance of the class derived from the DynamicObject class, the value is "Test".
true if the operation is successful; otherwise, false. If this method returns false, the run-time binder of the language determines the behavior. (In most cases, a language-specific run-time exception is thrown.).
Overrides:
Events
Occurs when a property value changes.
public event PropertyChangedEventHandler PropertyChanged
Implements: