Class VisibilityConditionAttribute
Denotes that visibility of the decorated property in a form depends either on a value of another property or on a custom visibility condition. The other property value is utilized during evaluation of the given visibility condition to indicate whether the decorated property's form component should be visible in a form. Either predefined visibility condition via ComparisonTypeEnum or a custom visibility condition can be used. When utilizing the dependee property value, the custom visibility condition type must inherit from AnotherPropertyVisibilityCondition<TValue> to ensure correct functionality, otherwise VisibilityCondition can be used.
[AttributeUsage(AttributeTargets.Property, AllowMultiple = true)]
public sealed class VisibilityConditionAttribute : Attribute
- Inheritance
-
objectAttributeVisibilityConditionAttribute
- Extension Methods
Constructors
VisibilityConditionAttribute(string, ComparisonTypeEnum, params object[])
Initializes a new instance of the VisibilityConditionAttribute class.
public VisibilityConditionAttribute(string dependeePropertyName, ComparisonTypeEnum comparisonType, params object[] arguments)
Parameters
dependeePropertyName
stringThe name of the property the decorated property depends on.
comparisonType
ComparisonTypeEnumThe comparison type.
arguments
object[]The additional comparison arguments.
VisibilityConditionAttribute(string, Type, string)
Initializes a new instance of the VisibilityConditionAttribute class.
public VisibilityConditionAttribute(string dependeePropertyName, Type visibilityConditionType, string conditionName = null)
Parameters
dependeePropertyName
stringThe name of the property the decorated property depends on.
visibilityConditionType
TypeThe visibility condition type.
conditionName
stringVisibility condition name.
VisibilityConditionAttribute(Type, string)
Initializes a new instance of the VisibilityConditionAttribute class.
public VisibilityConditionAttribute(Type visibilityConditionType, string conditionName = null)
Parameters
visibilityConditionType
TypeThe visibility condition type.
conditionName
stringVisibility condition name.
Properties
StringComparison
Determines string values comparison aspects.
public StringComparison StringComparison { get; set; }
Property Value
- StringComparison