IVsDropdownBarClientEx.GetEntryIndent(Int32, Int32, UInt32) Method

Definition

Returns the indent level for a particular drop-down bar/Window combo item.

public:
 int GetEntryIndent(int iCombo, int iIndex, [Runtime::InteropServices::Out] System::UInt32 % pIndent);
int GetEntryIndent(int iCombo, int iIndex, [Runtime::InteropServices::Out] unsigned int & pIndent);
public int GetEntryIndent (int iCombo, int iIndex, out uint pIndent);
abstract member GetEntryIndent : int * int * uint32 -> int
Public Function GetEntryIndent (iCombo As Integer, iIndex As Integer, ByRef pIndent As UInteger) As Integer

Parameters

iCombo
Int32

[in] The drop-down bar/Window combo.

iIndex
Int32

[in] Index of the item of interest.

pIndent
UInt32

[out] Indent level of iIndex item.

Returns

If the method succeeds, it returns S_OK. If it fails, it returns an error code.

Remarks

COM Signature

From textmgr2.idl:

HRESULT IVsDropdownBarClientEx::GetEntryIndent(  
   [in] long iCombo,  
   [in] long iIndex,  
   [out] ULONG *pIndent  
);  

Applies to