Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Hides the property at the given dispid from the Properties window.
Namespace: Microsoft.VisualStudio.Shell.Interop
Assembly: Microsoft.VisualStudio.Shell.Interop (in Microsoft.VisualStudio.Shell.Interop.dll)
Syntax
'Declaration
Function HideProperty ( _
dispid As Integer, _
<OutAttribute> ByRef pfHide As Integer _
) As Integer
int HideProperty(
int dispid,
out int pfHide
)
int HideProperty(
int dispid,
[OutAttribute] int% pfHide
)
abstract HideProperty :
dispid:int *
pfHide:int byref -> int
function HideProperty(
dispid : int,
pfHide : int
) : int
Parameters
- dispid
Type: System.Int32
Specifies the dispatch ID.
- pfHide
Type: System.Int32%
[out] Pointer to a flag indicating hide.
Return Value
Type: System.Int32
If the method succeeds, it returns S_OK. If it fails, it returns an error code.
Remarks
COM Signature
From vsshell.idl:
HRESULT IVsPerPropertyBrowsing::HideProperty(
DISPID dispid,
[out,retval]BOOL* pfHide
);
The HideProperty method hides the property at the given dispid from the Properties window. Implementers should return E_NOTIMPL to show all properties that are otherwise browsable.
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.