Skip to main content
.NET 6.0+

AppearanceController.UnRegisterController(ISupportRefreshItemsAppearance) Method

Removes a Controller from the list of registered Controllers.

Namespace: DevExpress.ExpressApp.ConditionalAppearance

Assembly: DevExpress.ExpressApp.ConditionalAppearance.v23.2.dll

Declaration

public void UnRegisterController(
    ISupportRefreshItemsAppearance controller
)

Parameters

Name Type Description
controller DevExpress.ExpressApp.ConditionalAppearance.ISupportRefreshItemsAppearance

A Controller implementing the ISupportRefreshItemsAppearance interface.

Remarks

When the Controller you registered in the Appearance Controller is deactivated, remove it from the list of registered Controllers using the UnRegisterController method. Pass this Controller as the controller parameter.

To determine when you need to register a Controller, refer to the AppearanceController.RegisterController method description.

See Also