Método IVsPerPropertyBrowsing.IsPropertyReadOnly (Int32, Int32)
Determina se uma propriedade deve ser feita somente leitura.
Namespace: Microsoft.VisualStudio.Shell.Interop
Assembly: Microsoft.VisualStudio.Shell.Interop (em Microsoft.VisualStudio.Shell.Interop.dll)
Sintaxe
int IsPropertyReadOnly(
int dispid,
out int fReadOnly
)
int IsPropertyReadOnly(
int dispid,
[OutAttribute] int% fReadOnly
)
abstract IsPropertyReadOnly :
dispid:int *
fReadOnly:int byref -> int
Function IsPropertyReadOnly (
dispid As Integer,
<OutAttribute> ByRef fReadOnly As Integer
) As Integer
Parâmetros
- dispid
[in] Especifica a ID do despacho.
- fReadOnly
[out] Sinalizador que indica somente leitura.
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:
HRESULT IVsPerPropertyBrowsing::IsPropertyReadOnly(
DISPID dispid,
[out, retval]BOOL* fReadOnly
);
Determina se uma propriedade deve ser feita somente leitura.Isso se aplica somente às propriedades são graváveis, mas retornando true para *fReadOnly fará com que sejam exibidos por que o Propriedades janela como somente leitura.
Consulte também
Interface IVsPerPropertyBrowsing
Namespace Microsoft.VisualStudio.Shell.Interop
Retornar ao topo