Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Gets the property page for a given language service.
Namespace: Microsoft.VisualStudio.Shell.Interop
Assembly: Microsoft.VisualStudio.Shell.Interop (in Microsoft.VisualStudio.Shell.Interop.dll)
Syntax
'Declaration
Function GetLanguagePropertyPage ( _
ByRef rguidPage As Guid, _
ByRef guidLang As Guid, _
<OutAttribute> ppage As VSPROPSHEETPAGE() _
) As Integer
int GetLanguagePropertyPage(
ref Guid rguidPage,
ref Guid guidLang,
VSPROPSHEETPAGE[] ppage
)
int GetLanguagePropertyPage(
[InAttribute] Guid% rguidPage,
[InAttribute] Guid% guidLang,
[InAttribute] [OutAttribute] array<VSPROPSHEETPAGE>^ ppage
)
abstract GetLanguagePropertyPage :
rguidPage:Guid byref *
guidLang:Guid byref *
ppage:VSPROPSHEETPAGE[] byref -> int
function GetLanguagePropertyPage(
rguidPage : Guid,
guidLang : Guid,
ppage : VSPROPSHEETPAGE[]
) : int
Parameters
- rguidPage
Type: System.Guid%
[in] GUID for the property page.
- guidLang
Type: System.Guid%
[in] GUID for the language service.
- ppage
Type: array<Microsoft.VisualStudio.Shell.Interop.VSPROPSHEETPAGE[]
[in, out] Pointer to a VSPROPSHEETPAGE.
Return Value
Type: System.Int32
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
);
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.