Important:
This is retired content. This content is outdated and is no longer being maintained. It is provided as a courtesy for individuals who are still using these technologies. This content may contain URLs that were valid when originally published, but now link to sites or pages that no longer exist.
A version of this page is also available for
4/8/2010

This method retrieves a running object's current display size.

Syntax

HRESULT GetExtent( 
  DWORD 
dwDrawAspect, 
  SIZEL* 
psizel
);

Parameters

dwDrawAspect

[in] Specifies the aspect of the object whose limit is to be retrieved. The value is obtained from the enumeration DVASPECT.

The most common value for this method is DVASPECT_CONTENT, which specifies a full rendering of the object within its container.

psizel

[out] Pointer to where the object's size is to be returned.

Return Value

This method supports the standard return value E_INVALIDARG, as well as S_OK, which indicates the extent information successfully returned.

Remarks

A container calls GetExtenton a running object to retrieve its current display size.

If the container can accommodate that size, it normally does so because the object knows what size it should be better than the container does. A container normally makes this call as part of initializing an object.

The display size returned by GetExtentmight differ from the size last set by IOleObject::SetExtentbecause the latter method dictates the object's display space at the time the method is called but does not necessarily change the object's native size, as determined by its application.

This method must return the same size as DVASPECT_CONTENT for all new aspects in DVASPECT2. IViewObject2::GetExtentmust do the same thing.

If one a new aspect is requested in dwAspect, this method can fail or return the same rectangle as for the DVASPECT_CONTENT aspect.

To determine whether the platform supports this interface, see Determining Supported COM APIs.

Notes to Implementers

Implementation consists of filling the sizelstructure with an object's height and width.

Requirements

Header Oleidl.h, oleidl.idl
Library oleaut32.lib, uuid.lib
Windows Embedded CE Windows CE 2.0 and later
Windows Mobile Windows Mobile Version 5.0 and later

See Also