expressappframework-devexpress-dot-expressapp-dot-conditionalappearance-dot-appearancecontroller-403e95a2.md
Occurs when the Appearance Controller collects the appearance rules and determines whether or not the specific IAppearanceRuleProperties object is empty.
Namespace : DevExpress.ExpressApp.ConditionalAppearance
Assembly : DevExpress.ExpressApp.ConditionalAppearance.v25.2.dll
NuGet Package : DevExpress.ExpressApp.ConditionalAppearance
public event EventHandler<CustomGetIsRulePropertiesEmptyEventArgs> CustomGetIsRulePropertiesEmpty
Public Event CustomGetIsRulePropertiesEmpty As EventHandler(Of CustomGetIsRulePropertiesEmptyEventArgs)
The CustomGetIsRulePropertiesEmpty event's data class is DevExpress.ExpressApp.ConditionalAppearance.CustomGetIsRulePropertiesEmptyEventArgs.
By default, the IAppearance.FontStyle, IAppearance.FontColor, IAppearance.BackColor, IAppearance.Visibility and IAppearance.Enabled nullable properties of the IAppearanceRuleProperties object are checked for a value presence and a rule properties object is considered empty if there are no values found. Once a rule properties object is considered empty, it is excluded from the processing list and is not processed at all. The result is cached to avoid duplicated calculations. Handle the CustomGetIsRulePropertiesEmpty event in case you have introduced new properties and want to manually manage their values.
See Also