TypeAndMemberDropdownBars::GetEntryText Method (Int32, Int32, String^)
Visual Studio 2015
Returns the text to be displayed for the specified entry in the specified combo box.
Assembly: Microsoft.VisualStudio.Package.LanguageService.14.0 (in Microsoft.VisualStudio.Package.LanguageService.14.0.dll)
Parameters
- combo
-
Type:
System::Int32
[in] The ID of the combo box (0 for the types combo box, 1 for the members combo box).
- entry
-
Type:
System::Int32
[in] The index of the entry for which to get the text.
- text
-
Type:
System::String^
[out] Returns a string containing the text to be displayed in the combo box for the specified entry. Returns null if the entry does not exist.
This method is an implementation of the GetEntryText method on the IVsDropdownBarClient interface.
The base method calls the GetMember method to retrieve the requested entry. If the entry is found, the base method returns the text from the entry; otherwise, a null is returned. The base method always returns a success code of S_OK.
Show: