IVsDropdownBarClientEx.GetEntryIndent(Int32, Int32, UInt32) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
);