IEEVisualizerDataProvider::CanSetObjectForVisualizer

Note

This article applies to Visual Studio 2015. If you're looking for the latest Visual Studio documentation, see Visual Studio documentation. We recommend upgrading to the latest version of Visual Studio. Download it here

This method determines whether the visualizer can have the data object it represents updated.

Syntax

HRESULT CanSetObjectForVisualizer(  
   BOOL* b  
);  
int CanSetObjectForVisualizer(  
   out int b  
);  

Parameters

b
[out] Nonzero (TRUE) if the object on the visualizer can be updated, zero (FALSE) if it cannot.

Return Value

If successful, returns S_OK; otherwise, returns an error code.

Remarks

An object might not be changeable if it is bound to read-only memory, for example.

See Also

IEEVisualizerDataProvider