IViewObject::SetAdvise method (oleidl.h)
Establishes a connection between the view object and an advise sink so that the advise sink can be notified about changes in the object's view.
Syntax
HRESULT SetAdvise(
[in] DWORD aspects,
[in] DWORD advf,
[in] IAdviseSink *pAdvSink
);
Parameters
[in] aspects
View for which the advisory connection is being set up. Valid values are taken from the enumeration DVASPECT. See the DVASPECT enumeration for more information.
[in] advf
Contains a group of flags for controlling the advisory connection. Valid values are from the enumeration ADVF. However, only some of the possible ADVF values are relevant for this method. The following table briefly describes the relevant values. See the ADVF enumeration for a more detailed description.
[in] pAdvSink
Pointer to the IAdviseSink interface on the advisory sink that is to be informed of changes. A NULL value deletes any existing advisory connection.
Return value
This method returns S_OK on success. Other possible return values include the following.
Return code | Description |
---|---|
|
Advisory notifications are not supported. |
|
Invalid value for dwAspect. |
|
One or more of the supplied values is invalid. |
|
Insufficient memory available for this operation. |
Remarks
A container application that is requesting a draw operation on a view object can also register with the IViewObject::SetAdvise method to be notified when the presentation of the view object changes. To find out about when an object's underlying data changes, you must call IDataObject::DAdvise separately.
To remove an existing advisory connection, call the IViewObject::SetAdvise method with pAdvSink set to NULL.
If the view object changes, a call is made to the appropriate advise sink through its IAdviseSink::OnViewChange method.
At any time, a given view object can support only one advisory connection. Therefore, when IViewObject::SetAdvise is called and the view object is already holding on to an advise sink pointer, OLE releases the existing pointer before the new one is registered.
Requirements
Requirement | Value |
---|---|
Minimum supported client | Windows 2000 Professional [desktop apps only] |
Minimum supported server | Windows 2000 Server [desktop apps only] |
Target Platform | Windows |
Header | oleidl.h |