Skip to content

Latest commit

 

History

History
50 lines (43 loc) · 1.3 KB

ieevisualizerdataprovider-getnewobjectforvisualizer.md

File metadata and controls

50 lines (43 loc) · 1.3 KB
description title ms.date ms.topic f1_keywords helpviewer_keywords author ms.author manager ms.subservice dev_langs
This method gets a new object for the visualizer.
IEEVisualizerDataProvider::GetNewObjectForVisualizer
11/04/2016
reference
IEEVisualizerDataProvider::GetNewObjectForVisualizer
IEEVisualizerDataProvider::GetNewObjectForVisualizer method
maiak
maiak
mijacobs
debug-diagnostics
CPP
CSharp

IEEVisualizerDataProvider::GetNewObjectForVisualizer

This method gets a new object for the visualizer. This method will always create a new object from the existing object.

Syntax

int GetNewObjectForVisualizer(
   out IDebugObject ppObject
);
HRESULT GetNewObjectForVisualizer(
   IDebugObject** ppObject
);

Parameters

ppObject
[out] The new object.

Return Value

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

Remarks

This method re-evaluates the object it currently represents and returns the result as a new object. The existing object will be updated as a result of the evaluation.

See also