Share via


IAdviseSink::OnViewChange (Compact 2013)

3/26/2014

This method advises the sink that an object has been closed.

Syntax

void OnViewChange( 
  DWORD dwAspect, 
  LONG lindex
);

Parameters

  • dwAspect
    [in] Specifies the aspect, or view, of the object.

    Contains a value taken from the enumeration, DVASPECT.

  • lindex
    [in] Portion of the view that has changed.

    Currently only 1 is valid.

Return Value

None.

Remarks

Containers register to be notified when an object's view changes by calling IViewObject::SetAdvise. When registered, the object calls the sink's OnViewChange method when appropriate. OnViewChange can be called when the object is in either the loaded or running state.

Even though DVASPECT values are individual flag bits, dwAspect might represent only one value. That is, dwAspectcannot contain the result of an OR operation combining two or more DVASPECT values.

The lindex member represents the part of the aspect that is of interest. The value of lindex depends on the value of dwAspect.

If dwAspect is DVASPECT_THUMBNAIL or DVASPECT_ICON, lindex is ignored.

If dwAspect is DVASPECT_CONTENT, lindex must be 1, which indicates that the entire view is of interest and is the only value that is valid.

To determine whether the platform supports this interface, see Determine Supported COM APIs.

Requirements

Header

objidl.h,
objidl.idl

Library

oleaut32.lib,
uuid.lib

See Also

Tasks

Determine Supported COM APIs

Reference

IAdviseSink
DVASPECT
IViewObject::SetAdvise