IVsCombinedBrowseComponentSet.GetSetAt 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.
Identifies a set in the combined component set.
public:
int GetSetAt(System::UInt32 ulIndex, [Runtime::InteropServices::Out] Microsoft::VisualStudio::Shell::Interop::IVsSimpleBrowseComponentSet ^ % ppSet);
public:
int GetSetAt(unsigned int ulIndex, [Runtime::InteropServices::Out] Microsoft::VisualStudio::Shell::Interop::IVsSimpleBrowseComponentSet ^ & ppSet);
int GetSetAt(unsigned int ulIndex, [Runtime::InteropServices::Out] Microsoft::VisualStudio::Shell::Interop::IVsSimpleBrowseComponentSet const & & ppSet);
public int GetSetAt (uint ulIndex, out Microsoft.VisualStudio.Shell.Interop.IVsSimpleBrowseComponentSet ppSet);
abstract member GetSetAt : uint32 * IVsSimpleBrowseComponentSet -> int
Public Function GetSetAt (ulIndex As UInteger, ByRef ppSet As IVsSimpleBrowseComponentSet) As Integer
Parameters
- ulIndex
- UInt32
The zero-based index identifying the set in the array of component sets.
The IVsSimpleBrowseComponentSet that represents the requested set.
Returns
If the method succeeds, it returns S_OK. If it fails, it returns an error code.
Remarks
COM Signature
From vsshell80.idl:
HRESULT GetSetAt(
[in] ULONG ulIndex,
[out, retval] IVsSimpleBrowseComponentSet ** ppSet
);