Metoda IVsHierarchy.GetProperty — (UInt32, Int32, Object)
Pobiera właściwości danego węzła lub poziomu hierarchii.
Przestrzeń nazw: Microsoft.VisualStudio.Shell.Interop
Zestaw: Microsoft.VisualStudio.Shell.Interop (w Microsoft.VisualStudio.Shell.Interop.dll)
Składnia
int GetProperty(
uint itemid,
int propid,
out object pvar
)
int GetProperty(
unsigned int itemid,
int propid,
[OutAttribute] Object^% pvar
)
abstract GetProperty :
itemid:uint32 *
propid:int *
pvar:Object byref -> int
Function GetProperty (
itemid As UInteger,
propid As Integer,
<OutAttribute> ByRef pvar As Object
) As Integer
Parametry
itemid
Type: System.UInt32[in] Identyfikator elementu element w hierarchii. Aby uzyskać listę itemid wartości, zobacz VSConstants.VSITEMID.
propid
Type: System.Int32[in] Identyfikator właściwości hierarchii. Aby uzyskać listę propid wartości, zobacz __VSHPROPID.
pvar
Type: System.Object[out] Wskaźnik do Typ VARIANT zawierający wartość właściwości.
Wartość zwracana
Type: System.Int32
Jeśli metoda zakończy się pomyślnie, zwraca S_OK. Jeśli nie, zwraca kod błędu.
Uwagi
Aby uzyskać właściwości projektu (hierarchia), określ itemid wartość VSITEMID_ROOT.
Podpis COM
Z vsshell.idl:
HRESULT IVsHierarchy::GetProperty(
[in] VSITEMID itemid,
[in] VSHPROPID propid,
[out] VARIANT *pvar
);
Zobacz też
Interfejs IVsHierarchy
Przestrzeń nazw Microsoft.VisualStudio.Shell.Interop
Powrót do początku