|
IOleClientSite::GetMoniker
Returns a moniker to an object's client site. An object can force the
assignment of its own or its container's moniker by specifying a value for dwAssign.
HRESULT GetMoniker(
DWORD dwAssign,
| //Value specifying how moniker is assigned
| DWORD dwWhichMoniker,
| //Value specifying which moniker is assigned
| IMoniker ** ppmk
| //Pointer to storage of returned moniker
| );
|
|
Parameters
dwAssign
[in] Specifies whether to get a moniker only if one has already exists, force
assignment of a moniker, create a temporary moniker, or remove a moniker that
has been assigned. In practice you will usually request that the container force
assignment of the moniker. Values defining these choices are contained in the
enumeration OLEGETMONIKER.
dwWhichMoniker
[in] Specifies whether to return the container's moniker, the object's moniker
relative to the container, or the object's full moniker. In practice, you will
usually request the object's full moniker. Values defining these choices are
contained in the enumeration OLEWHICHMK.
ppmk
[out] Points to where to return the object moniker. If an error is returned,
this parameter must be set to NULL. Each time a container receives a call to IOleClientSite::GetMoniker, it must increase the reference count on the pointer it returns. It is the
caller's responsibility to call Release when it is done with the pointer.
Return Values
S_OK
Requested moniker returned successfully.
E_FAIL
An unspecified error occurred.
E_UNEXPECTED
A serious, unexpected failure has occurred.
E_NOTIMPL
This container cannot assign monikers to objects. This is the case with OLE 1
containers.
Comments
Containers implement IOleClientSite::GetMoniker as a way of passing out monikers for their embedded objects to clients
wishing to link to those objects.
When a link is made to an embedded object or to a pseudo-object within it (a
range of cells in a spreadsheet; for example), the object needs a moniker to
construct the composite moniker indicating the source of the link. If the embedded
object does not already have a moniker, it can call IOleClientSite::GetMoniker to request one.
Every container that expects to contain links to embeddings should support IOleClientSite::GetMoniker to give out OLEWHICHMK_CONTAINER, thus enabling link tracking when the link
client and link source files move, but maintain the same relative position.
An object must not persistently store its full moniker or its container's
moniker, because these can change while the object is not loaded. For example,
either the container or the object could be renamed, in which event, storing the
container's moniker or the object's full moniker would make it impossible to for
a client to track a link to the object.
In some very specialized cases, an object may no longer need a moniker
previously assigned to it and may wish to have it removed as an optimization. In such
cases, the object can call IOleClientSite::GetMoniker with OLEGETMONIKER_UNASSIGN to have the moniker removed.
See Also
IOleObject::GetMoniker, IOleObject::SetMoniker
| Last news from Greatis Software |
 |
|
Nostalgia .Net |
|
.Net is powerful, but not all-powerful, so sometimes we need to use Win32 API for our .Net applications. It's simple enough with Platform Invoke if you have Win32 skill, but we do not always have time to dig the ancient documentation, declare the special types that are compatible with Win32, find the values of the Win32's constants and so on. Nostalgia .Net offers several simple-to-use classes, and components that will allow you to forget about the headache of Win32 and just use the power of Win32 in your application the same way as you use the native. Net classes. More » |
| Recommended software for developers |
 |
|
Ultimate Pack |
|
Component pack for Delphi and C++ Builder that contains runtime form designer, runtime object inspector, print suite and much more for the very special price. More » |
 |
|
Form Designer .Net |
|
Unique runtime form design solution that allows to edit any form in .Net WinForms application at runtime with full source codes for only 300 euro! More » |
 |
|
Print Suite .Net |
|
Print Suite .Net is a set of components for easy printing texts, images and grids from your WinForms applications. Full C# source codes are available More » |
 |
|
Gradient Controls .Net |
|
Gradient Controls .Net offers controls with gradient background feature. Labels, panels and so on... Full C# source codes are available More » |
 |
|
Greatis iGrid |
|
iGrid plots drawing grid right over your desktop, so you can use it everywhere, with any drawing application without any special plugins for different graphic editors. More » |
All the contacts and projectsDmitry Vasiliev (just.dmitry)
Related LinksSoftware for Visual Studio .NET developers Software for Delphi and C++ Builder developers Software for Visual Basic 6 developers Delphi Tips&Tricks MegaDetailed.NET More Online Helps Win32 Programmer's Reference Win32 Multimedia Programmer's Reference OLE Programmer's Reference Microsoft Windows Pen API Programmer's Reference Microsoft Windows Sockets 2 Reference Microsoft Windows Telephony API (TAPI) Programmer's Reference Unix Manual Pages
|