Skip to main content
A newer version of this page is available. .

IContentContainerAction Interface

Provides base functionality for custom Navigation Bar Actions.

Namespace: DevExpress.XtraBars.Docking2010.Views.WindowsUI

Assembly: DevExpress.XtraBars.v19.1.dll

Declaration

public interface IContentContainerAction :
    IUIAction<IContentContainer>,
    IUIActionProperties

Remarks

The IContentContainerAction interface provides the following properties.

  • Command property - stores an ICommand object that specifies the button’s functionality (inherited from the IUIAction interface)
  • Caption property - gets or sets a String value that is the button’s caption (inherited from the IUIActionProperties interface)
  • Description property - gets or sets a String value that is the button’s description (inherited from the IUIActionProperties interface)
  • Image property - gets or sets an Image that is the button’s icon (inherited from the IUIActionProperties interface)

Normally, you do not need to implement the IContentContainerAction interface manually. To add custom Navigation Bar Actions, please use the DelegateAction object or create your own object that implements the ContentContainerAction abstract class. See the Navigation Bars topic for details.

See Also