Class
PropertySet

A dynamic type that describes a set of properties.

Definition

Namespace:Telerik.Windows.Controls.Data.PropertyGrid

Assembly:Telerik.Windows.Controls.Data.dll

Syntax:

cs-api-definition
public class PropertySet : DynamicObject, IDynamicMetaObjectProvider, INotifyPropertyChanged, IDataErrorInfo

Inheritance: objectDynamicObjectPropertySet

Implements: IDataErrorInfoIDynamicMetaObjectProviderINotifyPropertyChanged

Inherited Members DynamicObject.TryDeleteMember(DeleteMemberBinder)DynamicObject.TryInvokeMember(InvokeMemberBinder, object[], out object)DynamicObject.TryConvert(ConvertBinder, out object)DynamicObject.TryCreateInstance(CreateInstanceBinder, object[], out object)DynamicObject.TryInvoke(InvokeBinder, object[], out object)DynamicObject.TryBinaryOperation(BinaryOperationBinder, object, out object)DynamicObject.TryUnaryOperation(UnaryOperationBinder, out object)DynamicObject.TryGetIndex(GetIndexBinder, object[], out object)DynamicObject.TrySetIndex(SetIndexBinder, object[], object)DynamicObject.TryDeleteIndex(DeleteIndexBinder, object[])DynamicObject.GetMetaObject(Expression)

Constructors

PropertySet()

Initializes a new instance of the PropertySet class.

Declaration

cs-api-definition
public PropertySet()

PropertySet(Func<string, object, string>)

Initializes a new instance of the PropertySet class.

Declaration

cs-api-definition
public PropertySet(Func<string, object, string> validationFunc)

Parameters

validationFunc

Func<string, object, string>

The validation function.

Fields

ShouldAddNullForNonMatchingValuesProperty

Represent the ShouldAddNullForNonMatchingValuesProperty attached property.

Declaration

cs-api-definition
public static readonly DependencyProperty ShouldAddNullForNonMatchingValuesProperty

Field Value

DependencyProperty

Properties

Error

Gets an error message indicating what is wrong with this object.

Declaration

cs-api-definition
[Browsable(false)]
[SuppressMessage("Design", "CA1065:Do not raise exceptions in unexpected locations", Justification = "<Pending>")]
public string Error { get; }

Property Value

string

An error message indicating what is wrong with this object. The default is an empty string ("").

Implements IDataErrorInfo.Error

this[string]

Gets or sets the object with the specified column name.

Declaration

cs-api-definition
public object this[string property] { get; set; }

Parameters

property

string

Property Value

object

Methods

GetDynamicMemberNames()

Returns the enumeration of all dynamic member names.

Declaration

cs-api-definition
public override IEnumerable<string> GetDynamicMemberNames()

Returns

IEnumerable<string>

A sequence that contains dynamic member names.

Overrides DynamicObject.GetDynamicMemberNames()

GetShouldAddNullForNonMatchingValues(DependencyObject)

Gets the value of ShouldAddNullForNonMatchingValuesProperty attached property.

Declaration

cs-api-definition
public static bool GetShouldAddNullForNonMatchingValues(DependencyObject element)

Parameters

element

DependencyObject

The object to get the property for.

Returns

bool

OnPropertyChanged(string)

Called when [property changed].

Declaration

cs-api-definition
protected void OnPropertyChanged(string fileName)

Parameters

fileName

string

Name of the file.

SetShouldAddNullForNonMatchingValues(DependencyObject, bool)

Sets the value of ShouldAddNullForNonMatchingValuesProperty attached property.

Declaration

cs-api-definition
public static void SetShouldAddNullForNonMatchingValues(DependencyObject element, bool value)

Parameters

element

DependencyObject

The object to set the property to.

value

bool

TryGetMember(GetMemberBinder, out object)

Provides 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.

Declaration

cs-api-definition
public override bool TryGetMember(GetMemberBinder binder, out object result)

Parameters

binder

GetMemberBinder

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.

result

object

The result of the get operation. For example, if the method is called for a property, you can assign the property value to result.

Returns

bool

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 DynamicObject.TryGetMember(GetMemberBinder, out object)

TrySetMember(SetMemberBinder, object)

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.

Declaration

cs-api-definition
public override bool TrySetMember(SetMemberBinder binder, object value)

Parameters

binder

SetMemberBinder

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.

value

object

The 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".

Returns

bool

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 DynamicObject.TrySetMember(SetMemberBinder, object)

Events

PropertyChanged

Occurs when a property value changes.

Declaration

cs-api-definition
public event PropertyChangedEventHandler PropertyChanged

Event Value

PropertyChangedEventHandler

Implements INotifyPropertyChanged.PropertyChanged