IVsEnumSelectedSymbols::Next Method (UInt32, array<IVsSelectedSymbol^>^, UInt32)
Visual Studio 2015
Returns the next one or more selected symbols represented by IVsSelectedSymbol interfaces.
Assembly: Microsoft.VisualStudio.Shell.Interop.8.0 (in Microsoft.VisualStudio.Shell.Interop.8.0.dll)
int Next( unsigned int celt, array<IVsSelectedSymbol^>^ rgpIVsSelectedSymbol, [OutAttribute] unsigned int% pceltFetched )
Parameters
- celt
-
Type:
System::UInt32
[in] The number of symbols to fetch in this call.
- rgpIVsSelectedSymbol
-
Type:
array<Microsoft.VisualStudio.Shell.Interop::IVsSelectedSymbol^>^
[out] Array of IVsSelectedSymbol interfaces. Length of the array is the value pointed to by pceltFetched.
- pceltFetched
-
Type:
System::UInt32
[out] Number of items returned. May be less than celt.
Return Value
Type: System::Int32If the method succeeds, it returns S_OK. If it fails, it returns an error code.
From vsshell80.idl:
HRESULT IVsEnumSelectedSymbols::Next(
[in] ULONG celt,
[out, size_is(celt), length_is(*pceltFetched)] IVsSelectedSymbol **rgpIVsSelectedSymbol,
[out] ULONG *pceltFetched
);
Show: