IVsPerPropertyBrowsing::HideProperty Method (Int32, Int32)

 

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)

int HideProperty(
	int dispid,
	[OutAttribute] int% pfHide
)

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.

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.

Return to top
Show: