IVsLanguageInfoPackage.GetLanguagePropertyPage 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 the property page for a given language service.
public:
int GetLanguagePropertyPage(Guid % rguidPage, Guid % guidLang, cli::array <Microsoft::VisualStudio::Shell::Interop::VSPROPSHEETPAGE> ^ ppage);
public int GetLanguagePropertyPage (ref Guid rguidPage, ref Guid guidLang, Microsoft.VisualStudio.Shell.Interop.VSPROPSHEETPAGE[] ppage);
abstract member GetLanguagePropertyPage : Guid * Guid * Microsoft.VisualStudio.Shell.Interop.VSPROPSHEETPAGE[] -> int
Public Function GetLanguagePropertyPage (ByRef rguidPage As Guid, ByRef guidLang As Guid, ppage As VSPROPSHEETPAGE()) As Integer
Parameters
- rguidPage
- Guid
[in] GUID for the property page.
- guidLang
- Guid
[in] GUID for the language service.
- ppage
- VSPROPSHEETPAGE[]
[in, out] Pointer to a VSPROPSHEETPAGE.
Returns
If the method succeeds, it returns S_OK. If it fails, it returns an error code.
Remarks
COM Signature
From vsshell.idl:
HRESULT IVsLanguageInfoPackage::GetLanguagePropertyPage(
[in] REFGUID rguidPage,
[in] REFGUID guidLang,
[in, out] VSPROPSHEETPAGE *ppage
);