Método IVsUIHierarchy.SetGuidProperty (UInt32, Int32, Guid)

 

Define as propriedades cujos valores são GUIDs.

Namespace:   Microsoft.VisualStudio.Shell.Interop
Assembly:  Microsoft.VisualStudio.Shell.Interop (em Microsoft.VisualStudio.Shell.Interop.dll)

Sintaxe

int SetGuidProperty(
    uint itemid,
    int propid,
    [InAttribute] ref Guid rguid
)
int SetGuidProperty(
    unsigned int itemid,
    int propid,
    [InAttribute] Guid% rguid
)
abstract SetGuidProperty : 
        itemid:uint32 *
        propid:int *
        rguid:Guid byref -> int
Function SetGuidProperty (
    itemid As UInteger,
    propid As Integer,
    <InAttribute> ByRef rguid As Guid
) As Integer

Parâmetros

  • itemid
    [in] Identificador do item de hierarquia que deve ser definido.Para obter uma lista de itemid valores, consulte VSITEMID.
  • propid
    [in] Identificador da propriedade no item de hierarquia determinada.Para obter uma lista de propid valores, consulte __VSHPROPID.
  • rguid
    [in] Valor GUID da propriedade especificada em propid que é retornado por GetGuidProperty.

Valor de retorno

Type: System.Int32

Se o método for bem-sucedido, ele retorna S_OK.Se ele falhar, ele retorna um código de erro.

Implementações

IVsHierarchy.SetGuidProperty(UInt32, Int32, Guid)

Comentários

COM assinatura

De vsshell.idl:

HRESULT IVsUIHierarchy::SetGuidProperty(
   [in] VSITEMID itemid,
   [in] VSHPROPID propid,
   [in] REFGUID rguid
);

Este método é chamado pelo ambiente para definir uma propriedade específica na hierarquia.

Consulte também

Interface IVsUIHierarchy
Namespace Microsoft.VisualStudio.Shell.Interop

Retornar ao topo