Share via


_CommandBarComboBoxEvents_ChangeEventHandler Delegate 

A Delegate type used to add an event handler for the Change event. The Change event occurs when the end user changes the selection in a command bar combo box.

Namespace: Microsoft.Office.Core
Assembly: office (in office.dll)

Usage

Sub Sub1(Ctrl As CommandBarComboBox)
End Sub
Dim _CommandBarComboBoxEvents_ChangeEventHandler1 As New _CommandBarComboBoxEvents_ChangeEventHandler(AddressOf Sub1)

Syntax

Public Delegate Sub _CommandBarComboBoxEvents_ChangeEventHandler( _
    <InAttribute()> ByVal Ctrl As CommandBarComboBox _
)
public delegate void _CommandBarComboBoxEvents_ChangeEventHandler(
    [In] CommandBarComboBox Ctrl
);
public delegate Void _CommandBarComboBoxEvents_ChangeEventHandler(
    CommandBarComboBox^ Ctrl
);
public delegate void _CommandBarComboBoxEvents_ChangeEventHandler(
    /*in*/CommandBarComboBox Ctrl
);
In JScript, you can use the delegates in the .NET Framework, but you cannot define your own.

Parameters

  • Ctrl
    The command bar combo box control.

Platforms

Development Platforms

Windows XP Home Edition, Windows XP Professional, Windows Server 2003, and Windows 2000

Target Platforms

See Also

Reference

Microsoft.Office.Core Namespace