Ribbon for WinForms | ComponentOne
C1.Win.Ribbon Namespace / C1Ribbon Class / UpdatingItemStyle Event

In This Topic
    UpdatingItemStyle Event (C1Ribbon)
    In This Topic
    Occurs before a style is applied to a ribbon item.
    Syntax
    'Declaration
     
    
    Public Event UpdatingItemStyle As EventHandler(Of UpdatingItemStyleEventArgs)
    public event EventHandler<UpdatingItemStyleEventArgs> UpdatingItemStyle
    Event Data

    The event handler receives an argument of type UpdatingItemStyleEventArgs containing data related to this event. The following UpdatingItemStyleEventArgs properties provide information specific to this event.

    PropertyDescription
    Gets or sets the System.Drawing.Color used to display text in the ribbon item.  
    Gets or sets the System.Drawing.Color used to display editable text in the ribbon item.  
    Gets a value indicating whether the ribbon item is displaying its drop-down portion.  
    Gets a value indicating whether the ribbon item is enabled and may receive mouse and keyboard messages.  
    Gets a value indicating whether the mouse is over the ribbon item.  
    Gets a value indicating whether the mouse is over the ribbon item and the left button is pressed.  
    Gets the ribbon item which the style is being updated.  
    See Also