[]
Metadata description for ICustomEffect property binding.
[AttributeUsage(AttributeTargets.Property, Inherited = true)]
public class PropertyBindingAttribute : Attribute, _Attribute
Initializes a new instance of PropertyBindingAttribute attribute.
public PropertyBindingAttribute(BindingType bindingType, int order, string min, string max, string defaultValue)
bindingType BindingTypeType of binding
order intOrder of the property
min stringMinimum value of this property
max stringMaximum value of this property
defaultValue stringDefault value of this property
Gets binding type.
public BindingType BindingType { get; }
Gets the Default value.
public string Default { get; }
Gets the DisplayName.
public string DisplayName { get; set; }
Gets the Max value.
public string Max { get; }
Gets the Min value.
public string Min { get; }
Gets the order of this property.
public int Order { get; }
Gets the Type of the property.
public PropertyType Type { get; set; }