Método IVsPropertyStreamOut.BeginPropertySection (String, String, IVsPropertyStreamOut, UInt32)
Começa uma seção de propriedades (fluxo interno de propriedade) utilizada até uma chamada para EndPropertySection.
Namespace: Microsoft.VisualStudio.Shell.Interop
Assembly: Microsoft.VisualStudio.Shell.Interop (em Microsoft.VisualStudio.Shell.Interop.dll)
Sintaxe
int BeginPropertySection(
string szName,
string szLineComment,
out IVsPropertyStreamOut ppIVsPropertyStreamOut,
out uint pdwCookie
)
int BeginPropertySection(
String^ szName,
String^ szLineComment,
[OutAttribute] IVsPropertyStreamOut^% ppIVsPropertyStreamOut,
[OutAttribute] unsigned int% pdwCookie
)
abstract BeginPropertySection :
szName:string *
szLineComment:string *
ppIVsPropertyStreamOut:IVsPropertyStreamOut byref *
pdwCookie:uint32 byref -> int
Function BeginPropertySection (
szName As String,
szLineComment As String,
<OutAttribute> ByRef ppIVsPropertyStreamOut As IVsPropertyStreamOut,
<OutAttribute> ByRef pdwCookie As UInteger
) As Integer
Parâmetros
- szName
[in] A seqüência de caracteres que contém o nome da seção de propriedade.
- szLineComment
[in] A seqüência de caracteres que contém um comentário sobre a seção.
- ppIVsPropertyStreamOut
[out] Ponteiro para o BeginPropertySection interface a ser usada para saída.
- pdwCookie
[out] Ponteiro para um inteiro que é um cookie identifica esta seção da propriedade.Usado na chamada para EndPropertySection.
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.
Comentários
COM assinatura
De vsshell.idl:
[C++]
HRESULT IVsPropertyStreamOut::BeginPropertySection(
[in] LPCOLESTR szName,
[in] LPCOLESTR szLineComment,
[out] IVsPropertyStreamOut **ppIVsPropertyStreamOut,
[out] VSCOOKIE *pdwCookie
);
Consulte também
Interface IVsPropertyStreamOut
Namespace Microsoft.VisualStudio.Shell.Interop
Retornar ao topo