|
IOleObject::SetExtent
Informs an object of how much display space its container has assigned it.
HRESULT SetExtent(
DWORD dwDrawAspect,
|
| SIZEL *psizel
|
| );
|
|
Parameters
dwDrawAspect
[in] Describes which form, or "aspect," of an object is to be displayed. The
object's container obtains this value from the enumeration DVASPECT (see "FORMATETC Data Structure"). The most common aspect is DVASPECT_CONTENT, which specifies
a full rendering of the object within its container. An object can also be
rendered as an icon, a thumbnail version for display in a browsing tool, or a
print version, which displays the object as it would be rendered using the File
Print command.
psizel
[in] Specifies the size limit for the object.
Return Values
S_OK
The object has resized successfully.
E_FAIL
The object's size is fixed.
OLE_E_NOTRUNNING
The object is not running.
Comments
A container calls IOleObject::SetExtent when it needs to dictate to an embedded object the size at which it will be
displayed. Often, this call occurs in response to an end user resizing the
object window. Upon receiving the call, the object, if possible, should recompose
itself gracefully to fit the new window.
Whenever possible, a container seeks to display an object at its finest
resolution, sometimes called the object's native size. All objects, however, have a default display size specified by their
applications, and in the absence of other constraints, this is the size they will use
to display themselves. Since an object knows its optimum display size better
than does its container, the latter normally requests that size from a running
object by calling IOleObject::GetExtent. Only in cases where the container cannot accommodate the value returned by
the object does it override the object's preference by calling IOleObject::SetExtent.
Notes to Callers
You can call SetExtent on an object only when the object is running. If a container resizes an
object while an object is not running, the container should keep track of the
object's new size but defer calling IOleObject::SetExtent until a user activates the object. If the OLEMISC_RECOMPOSEONRESIZE bit is
set on an object, its container should force the object to run before calling OleObject::SetExtent.
As noted above, a container may want to delegate responsibility for setting
the size of an object's display site to the object itself, by calling IOleObject::GetExtent.
Notes to Implementors
You may want to implement this method so that your object rescales itself to
match as closely as possible the maximum space available to it in its container.
If an object's size is fixed, that is, if it cannot be set by its container, OleObject::SetExtent should return E_FAIL. This is always the case with linked objects, whose
sizes are set by their link sources, not by their containers.
See Also
IAdviseSink::OnViewChange, IOleObject::GetExtent, IViewObject2::GetExtent
| 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
|