New to Telerik UI for WinFormsStart a free 30-day trial

Defines the source of current property value. See also %RadObject.GetValueSource:
Telerik.WinControls.RadObject.GetValueSource%.

Definition

Namespace:Telerik.WinControls

Assembly:Telerik.WinControls.dll

Syntax:

C#
public enum ValueSource : short

Fields

Indicates that the reason for the property change is an animation effect.

C#
Animation = 8

Indicates that the default value is set.

C#
DefaultValue = 1

An overridden default value, has higher priority than Default and Inherited source.

C#
DefaultValueOverride = 3

Indicates that the property changed is inherited.

C#
Inherited = 2

Value is set locally through a CLR property setter.

C#
Local = 5

A value is applied through two-way binding.

C#
LocalFromBinding = 7

Indicates that the reason for the property change is data binding.

C#
PropertyBinding = 6

Indicates that the reason for the property change is an applied theme.

C#
Style = 4

Indicates that the reason is unknown.

C#
Unknown = 0