IVsPerPropertyBrowsing::CanResetPropertyValue Method (Int32, Int32)

 

Checks whether the given property can be reset to the default value.

Namespace:   Microsoft.VisualStudio.Shell.Interop
Assembly:  Microsoft.VisualStudio.Shell.Interop (in Microsoft.VisualStudio.Shell.Interop.dll)

int CanResetPropertyValue(
	int dispid,
	[OutAttribute] int% pfCanReset
)

Parameters

dispid
Type: System::Int32

[in] Specifies the dispatch ID.

pfCanReset
Type: System::Int32

[out] Pointer to a flag indicating can reset.

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::CanResetPropertyValue(
   DISPID dispid,
   [out, retval]BOOL* pfCanReset
);

Checks whether the given property can be reset to the default value. If return value is not S_OK or *pfCanReset is false, the value will not be able to be reset.

Return to top
Show: