Hinweis
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, sich anzumelden oder das Verzeichnis zu wechseln.
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, das Verzeichnis zu wechseln.
Returns a window frame property based on a supplied GUID.
Namespace: Microsoft.VisualStudio.Shell.Interop
Assembly: Microsoft.VisualStudio.Shell.Interop (in Microsoft.VisualStudio.Shell.Interop.dll)
Syntax
'Declaration
Function GetGuidProperty ( _
propid As Integer, _
<OutAttribute> ByRef pguid As Guid _
) As Integer
'Usage
Dim instance As IVsWindowFrame
Dim propid As Integer
Dim pguid As Guid
Dim returnValue As Integer
returnValue = instance.GetGuidProperty(propid, _
pguid)
int GetGuidProperty(
int propid,
out Guid pguid
)
int GetGuidProperty(
[InAttribute] int propid,
[OutAttribute] Guid% pguid
)
abstract GetGuidProperty :
propid:int *
pguid:Guid byref -> int
function GetGuidProperty(
propid : int,
pguid : Guid
) : int
Parameters
- propid
Type: System.Int32
[in] Identifier of the property whose values are taken from the __VSFPROPID enumeration.
- pguid
Type: System.Guid%
[out] Pointer to the unique identifier of the property.
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 IVsWindowFrame::GetGuidProperty(
[in] VSFPROPID propid,
[out] GUID *pguid
);
The following table lists property IDs for GUID properties. See __VSFPROPID for a complete list of all property types.
Property Name |
Prop ID |
Comments |
|---|---|---|
-4007 |
For all document window frames |
|
-4011 |
For all document window frames |
|
-5000 |
For all tool window frames |
|
-5001 |
For all tool window frames |
.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.