IVsProfileSettingsTree.GetChild(Int32, IVsProfileSettingsTree) 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.
Gets a child tree.
public:
int GetChild(int index, [Runtime::InteropServices::Out] Microsoft::VisualStudio::Shell::Interop::IVsProfileSettingsTree ^ % ppChildTree);
public:
int GetChild(int index, [Runtime::InteropServices::Out] Microsoft::VisualStudio::Shell::Interop::IVsProfileSettingsTree ^ & ppChildTree);
int GetChild(int index, [Runtime::InteropServices::Out] Microsoft::VisualStudio::Shell::Interop::IVsProfileSettingsTree const & & ppChildTree);
public int GetChild (int index, out Microsoft.VisualStudio.Shell.Interop.IVsProfileSettingsTree ppChildTree);
abstract member GetChild : int * IVsProfileSettingsTree -> int
Public Function GetChild (index As Integer, ByRef ppChildTree As IVsProfileSettingsTree) As Integer
Parameters
- index
- Int32
[out] The location of the child tree.
- ppChildTree
- IVsProfileSettingsTree
[out] A IVsProfileSettingsTree interface to the child tree.
Returns
If the method succeeds, it returns S_OK. If it fails, it returns an error code.
Remarks
COM Signature
From vsshell80.idl:
[C++]
HRESULT IVsProfileSettingsTree::GetChild(
[in] int index,
[out] IVsProfileSettingsTree **ppChildTree
);