次の方法で共有


IAdviseSink::OnViewChange (Windows CE 5.0)

Send Feedback

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

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 Values

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, dwAspect cannot 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 Determining Supported COM APIs.

Requirements

OS Versions: Windows CE 2.0 and later.
Header: Objidl.h, Objidl.idl
Link Library: Oleaut32.lib, Uuid.lib.

See Also

IAdviseSink | DVASPECT | Determining Supported COM APIs | IViewObject::SetAdvise

Send Feedback on this topic to the authors

Feedback FAQs

© 2006 Microsoft Corporation. All rights reserved.