IOleLink
A version of this page is also available for
4/8/2010
This interface provide functions for managing information about the linked object, such as the location of the link source and the cached presentation data for the linked object.
IOleLink also provides functions for binding to link sources and for activating the connection to the document that stores the linked object's data.
A container application can distinguish between embedded objects and linked objects by querying for IOleLink; only linked objects implement IOleLink.
When to Implement
You do not have to implement this interface yourself; the system supplies an implementation of IOleLink that is suitable for all situations. This implementation is used automatically whenever you create or load a linked object.
When to Use
You must use IOleLink if you are writing a container application that allows its documents to contain linked objects.
You primarily call IOleLink methods to implement the Links dialog box.
Some IOleLink methods do not have to be called directly. Instead, you call methods of IOleObject; the default linked object provides an implementation of IOleObject that often calls methods of IOleLink.
For example, a container application typically activates a linked object by calling the IOleObject::DoVerb method, which in turn calls the IOleLink::BindToSource method.
Methods
The following table shows the methods for this interface in the order that the compiler calls the methods. Like all COM interfaces, this interface inherits the methods for the IUnknown interface.
IUnknown method | Description |
---|---|
Returns pointers to supported interfaces. |
|
Increments reference count. |
|
Decrements reference count. |
IOleLink method | Description |
---|---|
Sets the update options. |
|
Returns the update options. |
|
Sets the moniker for the link source. |
|
Returns the moniker for the link source. |
|
Sets the display name for the link source. |
|
Returns the display name for the link source. |
|
Binds the moniker to the link source. |
|
Binds the moniker if the source is running. |
|
Returns a pointer to the link source if it is running. |
|
Breaks the connection to the link source. |
|
Updates the cached views of the link source. |
Remarks
To determine whether the platform supports this interface, see Determining Supported COM APIs.
Requirements
Header | Oleidl.h, oleidl.idl |
Library | ole32.lib, uuid.lib |
Windows Embedded CE | Windows CE 3.0 and later |
Windows Mobile | Windows Mobile Version 5.0 and later |