IVsProfileSettingsTree.FindChildTree(String, 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.
Finds a child tree.
public:
int FindChildTree(System::String ^ bstrNameSearch, [Runtime::InteropServices::Out] Microsoft::VisualStudio::Shell::Interop::IVsProfileSettingsTree ^ % ppChildTree);
public:
int FindChildTree(Platform::String ^ bstrNameSearch, [Runtime::InteropServices::Out] Microsoft::VisualStudio::Shell::Interop::IVsProfileSettingsTree ^ & ppChildTree);
int FindChildTree(std::wstring const & bstrNameSearch, [Runtime::InteropServices::Out] Microsoft::VisualStudio::Shell::Interop::IVsProfileSettingsTree const & & ppChildTree);
public int FindChildTree (string bstrNameSearch, out Microsoft.VisualStudio.Shell.Interop.IVsProfileSettingsTree ppChildTree);
abstract member FindChildTree : string * IVsProfileSettingsTree -> int
Public Function FindChildTree (bstrNameSearch As String, ByRef ppChildTree As IVsProfileSettingsTree) As Integer
Parameters
- bstrNameSearch
- String
[in] The name of the tree to find.
- ppChildTree
- IVsProfileSettingsTree
[out] An 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 FindChildTree(
[in] BSTR bstrNameSearch,
[out] IVsProfileSettingsTree **ppChildTree
);