IVsDropdownBarClient.OnItemSelected Method
Fires when a combo item is selected.
Namespace: Microsoft.VisualStudio.TextManager.Interop
Assembly: Microsoft.VisualStudio.TextManager.Interop (in Microsoft.VisualStudio.TextManager.Interop.dll)
Syntax
'Declaration
Function OnItemSelected ( _
iCombo As Integer, _
iIndex As Integer _
) As Integer
int OnItemSelected(
int iCombo,
int iIndex
)
int OnItemSelected(
[InAttribute] int iCombo,
[InAttribute] int iIndex
)
abstract OnItemSelected :
iCombo:int *
iIndex:int -> int
function OnItemSelected(
iCombo : int,
iIndex : int
) : int
Parameters
iCombo
Type: System.Int32[in] The drop-down bar/Window combo.
iIndex
Type: System.Int32[in] Index of item of interest.
Return Value
Type: System.Int32
If the method succeeds, it returns S_OK. If it fails, it returns an error code.
Remarks
COM Signature
From textmgr.idl:
HRESULT IVsDropdownBarClient::OnItemSelected(
[in] long iCombo,
[in] long iIndex
);
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.