IVsWindowFrame::GetGuidProperty Method (Int32, Guid)

 

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)

int GetGuidProperty(
	int propid,
	[OutAttribute] Guid% pguid
)

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.

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

VSFPROPID_CmdUIGuid 

-4007

For all document window frames

VSFPROPID_InheritKeyBindings

-4011

For all document window frames

VSFPROPID_GuidPersistenceSlot

-5000

For all tool window frames

VSFPROPID_GuidAutoActivate

-5001

For all tool window frames

Return to top
Show: