描述
The REOBJECT structure contains information about an object.
C/C++ 语法
typedef struct _reobject { DWORD cbStruct; LONG cp; CLSID clsid; LPOLEOBJECT poleobj; LPSTORAGE pstg; LPOLECLIENTSITE polesite; SIZEL sizel; DWORD dvaspect; DWORD dwFlags; DWORD dwUser; } REOBJECT; |
FreeBasic Syntax
TYPE REOBJECT cbStruct AS DWORD cp AS LONG clsid AS CLSID poleobj AS LPOLEOBJECT pstg AS LPSTORAGE polesite AS LPOLECLIENTSITE sizel AS SIZEL dvaspect AS DWORD dwFlags AS DWORD dwUser AS DWORD END TYPE |
成员
cbStruct
Structure size, in bytes.
cp
Character position of the object.
clsid
Class identifier of the object.
poleobj
Points to an instance of the IOleObject interface for the object.
pstg
Points to an instance of the IStorage interface. This is the storage object associated with the object.
polesite
Points to an instance of the IOleClientSite interface. This is the object's client site in the rich edit control. This address must have been obtained from the IRichEditOle.GetClientSite method.
sizel
A SIZEL structure specifying the size of the object. The unit of measure is 0.01 millimeters, which is a himetric measurement. For more information, see function GetMapMode. A 0, 0 on insertion indicates that an object is free to determine its size until the modify flag is turned off.
dvaspect
Display aspect used. See DVASPECT for an explanation of possible values.
dwFlags
Object status flag. It can be a combination of the following values.
REO_BELOWBASELINE
Object sits below the baseline of the surrounding text; the default is to sit on the baseline.
REO_BLANK
Object is new. This value gives the object an opportunity to save nothing and be deleted from the control automatically.
REO_DONTUSEPALETTE
Object is rendered before the creation and realization of a half-tone palette. Applies to 32-bit platforms only.
REO_DYNAMICSIZE
Object always determines its extents and may change despite the modify flag being turned off.
REO_GETMETAFILE
The rich edit control retrieved the metafile from the object to correctly determine the object's extents. This flag can be read but not set.
REO_HILITED
Object is currently highlighted to indicate selection. Occurs when focus is in the control and REO_SELECTED is set. This flag can be read but not set.
REO_INPLACEACTIVE
Object is currently inplace active. This flag can be read but not set.
REO_INVERTEDSELECT
Object is to be drawn entirely inverted when selected; the default is to be drawn with a border.
REO_LINK
Object is a link. This flag can be read but not set.
REO_LINKAVAILABLE
Object is a link and is believed to be available. This flag can be read but not set.
REO_OPEN
Object is currently open in its server. This flag can be read but not set.
REO_RESIZABLE
Object may be resized.
REO_SELECTED
Object is currently selected in the rich edit control. This flag can be read but not set.
REO_STATIC
Object is a static object. This flag can be read but not set.
dwUser
Reserved for user-defined values.
最低操作系统
Windows 95, Windows NT 4.0.