Método IVsPropertyFileOut.Write (String, Object, String)
Grava um nome de propriedade, o valor e o comentário no fluxo.
Namespace: Microsoft.VisualStudio.Shell.Interop
Assembly: Microsoft.VisualStudio.Shell.Interop (em Microsoft.VisualStudio.Shell.Interop.dll)
Sintaxe
int Write(
string szPropertyName,
object varValue,
string szLineComment
)
int Write(
String^ szPropertyName,
Object^ varValue,
String^ szLineComment
)
abstract Write :
szPropertyName:string *
varValue:Object *
szLineComment:string -> int
Function Write (
szPropertyName As String,
varValue As Object,
szLineComment As String
) As Integer
Parâmetros
- szPropertyName
[in] A seqüência de caracteres que contém o nome da propriedade.
- varValue
[in] Uma VARIANTE que contém o valor da propriedade.
- szLineComment
[in] Uma seqüência de caracteres opcional que contém um comentário.
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
IVsPropertyStreamOut.Write(String, Object, String)
Comentários
COM assinatura
De vsshell.idl:
[C++]
HRESULT IVsPropertyFileOut::Write(
[in] LPCOLESTR szPropertyName,
[in] VARIANT varValue,
[in, optional] LPCOLESTR szLineComment
);
Consulte também
Interface IVsPropertyFileOut
Namespace Microsoft.VisualStudio.Shell.Interop
Retornar ao topo