This document describes the file format of the Office Drawing Layer (Escher). With this document and knowledge of the host application's file format, the reader should be able to construct and interpret an Escher file stream.
Figure 1 -- Containership Hierarchy
A few other points are worth notingAtoms | Records that contain information about an Escher object and are kept inside containers. |
Containers | Records that keep atoms and other containers in a logical and organized way. |
The common record header is an 8-byte structure defined in msodr.h as follows:
typedef struct MSOFBH { struct { ULONG ver : 4; ULONG inst: 12; ULONG fbt : 16; }; ULONG cbLength; } MSOFBH;The fields are:
Record Type | Indicates the signature or type of the record. Each record has a symbolic and a numberic signature in msodr.h. Escher uses values from 0xF000 to 0xFFFF. Clients may define their own records in other ranges. A description of each of the different types can be found in the following sections. |
Record Instance | (inst) Differentiates atoms. Depending on the instance a record's contents it can have different meanings. For example a list container can store a list of slides or a list of fonts, and its instance would vary accordingly. The instance of a record is useful for differentiating atoms when there is more than one atom of the same type in a particular container |
Record Version | (ver) Indicates the version if the record is an atom. If the record is a container, this field has a value of 0xFFFF. |
Record Length | (cbLength) Stores the length of the record in bytes. If the record is an atom, it refers to the length of the atom excluding the header. If the record is a container, it refers to the sum of the length of the atoms inside it, plus the length of the record headers. |
The common header specifies the length of each record. Consequently, it is possible to parse the Escher record stream without knowledge of the actual contents of each record. The Escher team intends to take advantage of this fact in future versions. As new features are added, Escher will define new record types. Readers of the Escher file format should skip over record types unknown to the reader. In addition, readers should not expect a record to come in a certain order in a container. They can, however, expect that the containership hierarchy will not change. For example, readers do not need to handle the case of a shape record containing a drawing record.
When Escher writes to a client file, it stores client-specific records in it stream to preserve the client features and behaviors. On the other hand, when Escher writes to a clipboard stream, it uses a client-independent form of the file format to allow interchange between applications.
Escher saves records in Intel byte-order even on the Macintosh. The Macintosh version of Escher byte-swaps the records as they are loaded and as they are saved. Records are tightly packed, without alignment. The LONG type is 32 bits in length.
The general problem of saving pointers to objects in the file format is solved in ordinary fashion by giving objects unique identifiers, which are saved in the file format in place of the pointer values. At load time, these IDs are converted back into pointers.
The most common instances of this are pointers to shapes, which are saved as shape IDs, or SPIDs. SPIDs are unique per drawing group, and are parceled out by the drawing group to individual drawings in blocks of 1024. The drawing group keeps a table recording which drawing owns which block of SPIDs, so that, given a SPID, it is easy to determine which drawing the shape is in. That table makes up the bulk of the msofbtDgg record, and is the only place where pointers to drawings are saved (as DGIDs).
Record Name | Word | Excel | PowerPoint | FBT value | Version | Instance | Contents | ||
msofbtDggContainer | X | X | X | F000 | per-document data | ||||
msofbtDgg | X | X | X | F006 | 0 | an FDGG and several FIDCLs | |||
msofbtCLSID | C | C | C | F016 | 0 | the CLSID of the application that put the data on the clipboard | |||
msofbtOPT | X | X | X | F00B | 3 | count of properties | the document-wide default shape properties | ||
msofbtColorMRU | X | X | X | F11A | 0 | count of colors | the colors in the MRU swatch | ||
msofbtSplitMenuColors | X | X | X | F11E | 0 | count of colors | the colors in the top-level split menus | ||
msofbtBstoreContainer | X | X | X | F001 | count of BLIPs | all images in the document (JPEGs, metafiles, etc.) | |||
msofbtBSE | X | X | X | F007 | 2 | BLIP type | an FBSE (one per BLIP) | ||
msofbtBlip*** | X | X | X | F018 - F117 | range of fbts reserved for various kinds of BLIPs | ||||
msofbtDgContainer | X | X | X | F002 | per-sheet/page/slide data | ||||
msofbtDg | X | X | X | F008 | 0 | drawing ID | an FDG | ||
msofbtRegroupItems | X | X | X | F118 | 0 | count of regroup entries | several FRITs | ||
msofbtColorScheme | C | C | F120 | 0 | count of colors | the colors of the source host's color scheme | |||
msofbtSpgrContainer | X | X | X | F003 | several SpContainers, the first of which is the group shape itself | ||||
msofbtSpContainer | X | X | X | F004 | a shape | ||||
msofbtSpgr | X | X | X | F009 | 1 | an FSPGR; only present if the shape is a group shape | |||
msofbtSp | X | X | X | F00A | 2 | shape type | an FSP | ||
msofbtOPT | X | X | X | F00B | 3 | count of properties | a shape property table | ||
msofbtTextbox | C | C | C | F00C | 0 | RTF text | |||
msofbtClientTextbox | X | X | X | F00D | host-defined | the text in the textbox, in a host-defined format | |||
msofbtAnchor | C | C | C | F00E | 0 | a RECT, in 100000ths of an inch | |||
msofbtChildAnchor | X | X | X | F00F | 0 | a RECT, in units relative to the parent group | |||
msofbtClientAnchor | X | X | X | F010 | host-defined | the location of the shape, in a host-defined format | |||
msofbtClientData | X | X | X | F011 | host-defined | host-specific data | |||
msofbtOleObject | C | C | C | F11F | 0 | a serialized IStorage for an OLE object | |||
msofbtDeletedPspl | X | F11D | 0 | an FPSPL; only present in top-level deleted shapes | |||||
msofbtSolverContainer | X | X | X | F005 | count of rules | the rules governing shapes | |||
msofbtConnectorRule | X | X | F012 | 1 | an FConnectorRule | ||||
msofbtAlignRule | X | X | X | F013 | 0 | an FAlignRule | |||
msofbtArcRule | X | X | X | F014 | 0 | an FARCRU | |||
msofbtClientRule | F015 | host-defined | host-defined | ||||||
msofbtCalloutRule | X | X | X | F017 | 0 | an FCORU | |||
msofbtSelection | X | F119 | 0 | an FDGSL followed by the SPIDs of the shapes in the selection |
The drawing group record is a variable length record consisting of a fixed part followed by an array. The fixed part is defined as follows.
// FDGG - File DGG typedef struct _FDGG { MSOSPID spidMax; // The current maximum shape ID ULONG cidcl; // The number of ID clusters (FIDCLs) ULONG cspSaved; // The total number of shapes saved // (including deleted shapes, if undo // information was saved) ULONG cdgSaved; // The total number of drawings saved } FDGG;The fixed part is followed by an array of ID clusters. The ID clusters are used internally for the translation of shape ids (SPIDs) to shape handles (MSOHSPs).
// File ID Cluster - used to save IDCLs typedef struct _FIDCL { MSODGID dgid; // DG owning the SPIDs in this cluster ULONG cspidCur; // number of SPIDs used so far } FIDCL;
// FBSE - File Blip Store Entry
typedef struct _FBSE
{
BYTE btWin32; // Required type on Win32
BYTE btMacOS; // Required type on Mac
BYTE rgbUid[16]; // Identifier of blip
WORD tag; // currently unused
ULONG size; // Blip size in stream
ULONG cRef; // Reference count on the blip
MSOFO foDelay; // File offset in the delay stream
BYTE usage; // How this blip is used (MSOBLIPUSAGE)
BYTE cbName; // length of the blip name
BYTE unused2; // for the future
BYTE unused3; // for the future
} FBSE;
typedef enum
{
msoblipUsageDefault, // All non-texture fill blips get this.
msoblipUsageTexture,
msoblipUsageMax = 255 // Since this is stored in a byte
} MSOBLIPUSAGE;
typedef enum
{ // GEL provided types...
msoblipERROR = 0, // An error occured during loading
msoblipUNKNOWN, // An unknown blip type
msoblipEMF, // Windows Enhanced Metafile
msoblipWMF, // Windows Metafile
msoblipPICT, // Macintosh PICT
msoblipJPEG, // JFIF
msoblipPNG, // PNG
msoblipDIB, // Windows DIB
msoblipFirstClient = 32, // First client defined blip type
msoblipLastClient = 255 // Last client defined blip type
} MSOBLIPTYPE;
typedef enum
{
msobiUNKNOWN = 0,
msobiWMF = 0x216, // Metafile header then compressed WMF
msobiEMF = 0x3D4, // Metafile header then compressed EMF
msobiPICT = 0x542, // Metafile header then compressed PICT
msobiPNG = 0x6E0, // One byte tag then PNG data
msobiJFIF = 0x46A, // One byte tag then JFIF data
msobiJPEG = msobiJFIF,
msobiDIB = 0x7A8, // One byte tag then DIB data
msobiClient=0x800, // Clients should set this bit
}
MSOBI; // Blip signature as encoded in the MSOFBH.inst
The btWin32 and btMacOS fields store the MSOBLIPTYPE for the respective operating systems. When the OS blip type doesn't match the blip type of stored, Escher will attempt to convert the blip. For example, a PICT will be stored as a msoblipPICT with a btWin32 field of msoblipWMF and a btMacOS field of msoblipPICT. When the PICT blip is loaded on Windows, the stored field will not match the OS field, so PICTtoWMF filter will be called to create a msoblipWMF BLIP.
A few additional facts are worth noting. Clients can define their own BLIP types. When loading client defined blip types Escher calls the clients to load the blips. Each BSE contains a 16-byte checksum that is used to quickly compare a BLIP with other BLIPs in the store. Any algorithm could be used for this checksum. Escher uses the RSA Data Security, Inc. MD4 Message-Digest Algorithm for the checksums of its BLIP types. Finally, the cRef field can be 0, indicating an empty slot in the BStore.
If a delay stream is not used, then the BLIP data follows the BSE header in a separate record. The FBT of the BLIP record is the MSOBLIPTYPE plus msofbtBlipFirst (0xF018). (If a delay stream is being used, the BLIP's record header and data are both written there instead.)
typedef enum
{
msocompressionDeflate = 0,
msocompressionNone = 254, // Used only if compression fails
msocompressionTest = 255, // For testing only
}
MSOBLIPCOMPRESSION;
typedef enum
{
msofilterAdaptive = 0, // PNG type - not used/supported for metafile
msofilterNone = 254,
msofilterTest = 255, // For testing only
}
MSOBLIPFILTER;
/* The secondary, or data, UID - should always be set. */
BYTE m_rgbUid[16];
/* The primary UID - this defaults to 0, in which case the primary ID is
that of the internal data. NOTE!: The primary UID is only saved to disk
if (blip_instance ^ blip_signature == 1). Blip_instance is MSOFBH.inst and
blip_signature is one of the values defined in MSOBI */
BYTE m_rgbUidPrimary[16]; / / optional based on the above check
/* Metafile Blip overhead = 34 bytes. m_cb gives the number of
bytes required to store an uncompressed version of the file, m_cbSave
is the compressed size. m_mfBounds gives the boundary of all the
drawing calls within the metafile (this may just be the bounding box
or it may allow some whitespace, for a WMF this comes from the
SetWindowOrg and SetWindowExt records of the metafile). */
int m_cb; // Cache of the metafile size
RECT m_rcBounds; // Boundary of metafile drawing commands
POINT m_ptSize; // Size of metafile in EMUs
int m_cbSave; // Cache of saved size (size of m_pvBits)
BYTE m_fCompression; // MSOBLIPCOMPRESSION
BYTE m_fFilter; // always msofilterNone
void *m_pvBits; // Compressed bits of metafile.
/* The secondary, or data, UID - should always be set. */
BYTE m_rgbUid[16];
/* The primary UID - this defaults to 0, in which case the primary ID is
that of the internal data. NOTE!: The primary UID is only saved to disk
if (blip_instance ^ blip_signature == 1). Blip_instance is MSOFBH.finst and
blip_signature is one of the values defined in MSOBI*/
BYTE m_rgbUidPrimary[16]; // optional based on the above check
BYTE m_bTag;
void *m_pvBits; // raster bits of the blip.
< >
< >
Record Type | Condition | Comments |
msofbtDg | Always. | Basic drawing information. |
msofbtRegroupItems | Shapes have been ungrouped. | Mappings to reconstitute groups. |
msofbtSpgrContainer | Always. | Patriarch shape, with all non-background non-deleted shapes inside it. |
msofbtSpContainer with fBackground bit set in the FSP (see below). | Application uses a background shape (currently Word and PowerPoint only). | Special shape used as background of the document, e.g. the background texture of a Web page. |
Other msofbtSpContainers and msofbtSpgrContainers | Undo is being saved, and there are deleted shapes in the drawing. | Shapes that have been deleted but that could be brought back via Undo. |
msofbtSolverContainer | There are rules in the drawing. | Rules governing shapes in the drawing. |
msofbtColorScheme | The application uses a color scheme. | Only present in the clipboard format. |
// FDG - File DG
typedef struct _FDG
{
ULONG csp; // The number of shapes in this drawing
MSOSPID spidCur; // The last MSOSPID given to an SP in this DG
} FDG;
< >
< >
typedef struct _FRIT // File Regroup item
{
FRID fridNew;
FRID fridOld;
} FRIT;
< >
< >
Record Type | Condition | Comments |
msofbtSpgr | Shape is a group shape. | Group-shape-specific information. |
msofbtSp | Always. | A shape atom record. |
msofbtOPT | Always. | The properties of a shape. |
msofbtAnchor or msofbtChildAnchor or msofbtClientAnchor | Always, except for the background shape. | The anchor or location of the shape. If the shape is saved to a clipboard, a msofbtAnchor record is used. If the shape is a child of a group shape, a msofbtChildAnchor is used. Otherwise, for top-level shapes, a host anchor record is present. |
msofbtClientData | Always. | A client data record, the content of which is up to the host. |
msofbtClientTextbox or msofbtTextbox | Shape has attached text. | If the shape has text, a text record is written. For clipboard streams, a msofbtTextbox record is used. Otherwise, a msofbtClientTextbox record is used, the content of which is up to the host. |
msofbtOleObject | Shape is an OLE object. | Used only in the clipboard format. |
msofbtDeletedPspl | Shape is deleted. | Link to previous spot of object. |
typedef struct _FSPGR
{
RECT rcgBounds;
} FSPGR;
typedef struct _FSP
{
MSOSPID spid; // The shape id
ULONG grfPersistent;
} FSP;
The flags for the shape are:
typedef struct
{
ULONG fGroup : 1; // This shape is a group shape
ULONG fChild : 1; // Not a top-level shape
ULONG fPatriarch : 1; // This is the topmost group shape.
// Exactly one of these per drawing.
ULONG fDeleted : 1; // The shape has been deleted
ULONG fOleShape : 1; // The shape is an OLE object
ULONG fHaveMaster : 1; // Shape has a hspMaster property
ULONG fFlipH : 1; // Shape is flipped horizontally
ULONG fFlipV : 1; // Shape is flipped vertically
ULONG fConnector : 1; // Connector type of shape
ULONG fHaveAnchor : 1; // Shape has an anchor of some kind
ULONG fBackground : 1; // Background shape
ULONG fHaveSpt : 1; // Shape has a shape type property
ULONG reserved : 20; // Not yet used
}
The format of a property table record is in another section of this document.
// FPSPL - File PSPL
typedef struct _FPSPL
{
union
{
ULONG lAll;
struct
{
ULONG spid : 30; // The SPID of the shape PSPL points at.
ULONG fFirst : 1; // Is this a pointer to the m_splFirst?
ULONG fLast : 1; // Is this a pointer to the m_splLast?
};
};
} FPSPL;
< >
< >
typedef struct _FConnectorRule
{
ULONG ruid; // rule ID
MSOSPID spidA; // SPID of shape A
MSOSPID spidB; // SPID of shape B
MSOSPID spidC; // SPID of connector shape
ULONG cptiA; // Connection site Index of shape A
ULONG cptiB; // Connection site Index of shape B
} FConnectorRule;
// FAlignRule
typedef struct _FAlignRule
{
ULONG ruid; // rule ID
ULONG align; // alignment – see below
ULONG cProxies; // number of shapes governed by rule
} FAlignRule;
// ALIGN == Shape alignment (Horz and vert can be or'ed together)
#define alignHorz 0x000F // mask for horizontal component
#define alignLeft 0x0001 // left edges
#define alignCenter 0x0002 // horizontal center
#define alignRight 0x0003 // right edges
#define alignVert 0x00F0 // mask for vertical component
#define alignTop 0x0010 // top edges
#define alignMiddle 0x0020 // vertical center
#define alignBottom 0x0030 // bottom edges
#define alignRelative 0x0100 // Relative to the page
// FARCRU -- Arc Rule
typedef struct _FARCRU
{
ULONG ruid; // rule ID
MSOSPID spid; // spid of arc shape
} FARCRU;
// FCORU -- Callout Rule
typedef struct _FCORU
{
ULONG ruid; // rule ID
MSOSPID spid; // spid of callout shape
} FCORU;
< >
< >
// FDGSL - File Drawing Selection
typedef struct _FDGSL
{
ULONG cpsp; // number of shapes in the selection
ULONG dgslk; // kind of selection (an MSODGSLK)
MSOSPID spidFocus; // SPID of the focus shape
} FDGSL;
// DGSLK = DrawinG SeLection Kind.
typedef enum
{
msodgslkNormal, // Normal Selection Mode.
msodgslkRotate, // Rotate selection mode
msodgslkReshape, // Reshape Selection Mode.
msodgslkUnused,
msodgslkWrapPolygon, // Display and edit of wrap polygons.
msodgslkTextEdit // Text Edit Mode.
} MSODGSLK;
< >
< >
typedef struct _FOPTE
{
struct
{
USHORT pid : 14; // Property ID
USHORT fBid : 1; // value is a blip ID – only valid if fComplex is FALSE
USHORT fComplex : 1; // complex property, value is length
};
ULONG op; // Value
} FOPTE;
The FOPTE array is sorted by property ID.
Some property values, such as Unicode strings, don't fit in 32 bits. For these properties, the fComplex bit is set in the FOPTE, and the length of the data is saved in the value slot. The data of the complex properties follows the FOPTE array in the file record (sorted by property ID).
BLIPs are usually saved in the BLIP Store, so, in most cases, BLIP properties just store a BLIP ID (basically an index into an array in the BLIP Store). This is signaled by the fBid flag; note however that this flag is only valid if fComplex is FALSE.
Boolean properties are grouped in bitfields by property set; note that the Boolean properties in each property set below are contiguous. They are saved under the property ID of the last Boolean property in the set, and are placed in the value field in reverse order starting with the last property in the low bit.
Notes on types and units:
Property | PID | Type | Default | Description |
rotation | 4 | LONG | 0 | fixed point: 16.16 degrees |
Property | PID | Type | Default | Description |
fLockRotation | 119 | BOOL | FALSE | No rotation |
fLockAspectRatio | 120 | BOOL | FALSE | Don't allow changes in aspect ratio |
fLockPosition | 121 | BOOL | FALSE | Don't allow the shape to be moved |
fLockAgainstSelect | 122 | BOOL | FALSE | Shape may not be selected |
fLockCropping | 123 | BOOL | FALSE | No cropping this shape |
fLockVertices | 124 | BOOL | FALSE | Edit Points not allowed |
fLockText | 125 | BOOL | FALSE | Do not edit text |
fLockAdjustHandles | 126 | BOOL | FALSE | Do not adjust |
fLockAgainstGrouping | 127 | BOOL | FALSE | Do not group this shape |
Property | PID | Type | Default | Description |
lTxid | 128 | LONG | 0 | id for the text, value determined by the host |
dxTextLeft | 129 | LONG | 1/10 inch | margins relative to shape's inscribed text rectangle (in EMUs) |
dyTextTop | 130 | LONG | 1/20 inch | |
dxTextRight | 131 | LONG | 1/10 inch | |
dyTextBottom | 132 | LONG | 1/20 inch | |
WrapText | 133 | MSOWRAPMODE | FALSE | Wrap text at shape margins |
scaleText | 134 | LONG | 0 | Text zoom/scale (used if fFitTextToShape) |
anchorText | 135 | MSOANCHOR | Top | How to anchor the text |
txflTextFlow | 136 | MSOTXFL | HorzN | Text flow |
cdirFont | 137 | MSOCDIR | msocdir0 | Font rotation |
hspNext | 138 | MSOHSP | NULL | ID of the next shape (used by Word for linked textboxes) |
txdir | 139 | MSOTXDIR | LTR | Bi-Di Text direction |
fSelectText | 187 | BOOL | TRUE | TRUE if single click selects text, FALSE if two clicks |
fAutoTextMargin | 188 | BOOL | FALSE | use host's margin calculations |
fRotateText | 189 | BOOL | FALSE | Rotate text with shape |
fFitShapeToText | 190 | BOOL | FALSE | Size shape to fit text size |
fFitTextToShape | 191 | BOOL | FALSE | Size text to fit shape size |
Property | PID | Type | Default | Description |
gtextUNICODE | 192 | WCHAR* | NULL | UNICODE text string |
gtextRTF | 193 | char* | NULL | RTF text string |
gtextAlign | 194 | MSOGEOTEXTALIGN | Center | alignment on curve |
gtextSize | 195 | LONG | 36<<16 | default point size |
gtextSpacing | 196 | LONG | 1<<16 | fixed point 16.16 |
gtextFont | 197 | WCHAR* | NULL | font family name |
gtextFReverseRows | 240 | BOOL | FALSE | Reverse row order |
fGtext | 241 | BOOL | FALSE | Has text effect |
gtextFVertical | 242 | BOOL | FALSE | Rotate characters |
gtextFKern | 243 | BOOL | FALSE | Kern characters |
gtextFTight | 244 | BOOL | FALSE | Tightening or tracking |
gtextFStretch | 245 | BOOL | FALSE | Stretch to fit shape |
gtextFShrinkFit | 246 | BOOL | FALSE | Char bounding box |
gtextFBestFit | 247 | BOOL | FALSE | Scale text-on-path |
gtextFNormalize | 248 | BOOL | FALSE | Stretch char height |
gtextFDxMeasure | 249 | BOOL | FALSE | Do not measure along path |
gtextFBold | 250 | BOOL | FALSE | Bold font |
gtextFItalic | 251 | BOOL | FALSE | Italic font |
gtextFUnderline | 252 | BOOL | FALSE | Underline font |
gtextFShadow | 253 | BOOL | FALSE | Shadow font |
gtextFSmallcaps | 254 | BOOL | FALSE | Small caps font |
gtextFStrikethrough | 255 | BOOL | FALSE | Strike through font |
Property | PID | Type | Default | Description | ||
cropFromTop | 256 | LONG | 0 | 16.16 fraction times total image width or height, as appropriate. | ||
cropFromBottom | 257 | LONG | 0 | |||
cropFromLeft | 258 | LONG | 0 | |||
cropFromRight | 259 | LONG | 0 | |||
pib | 260 | IMsoBlip* | NULL | Blip to display | ||
pibName | 261 | WCHAR* | NULL | Blip file name | ||
pibFlags | 262 | MSOBLIPFLAGS | Comment | Blip flags | ||
pictureTransparent | 263 | LONG | ~0 | transparent color (none if ~0UL) | ||
pictureContrast | 264 | LONG | 1<<16 | contrast setting | ||
pictureBrightness | 265 | LONG | 0 | brightness setting | ||
pictureGamma | 266 | LONG | 0 | 16.16 gamma | ||
pictureId | 267 | LONG | 0 | Host-defined ID for OLE objects (usually a pointer) | ||
pictureDblCrMod | 268 | MSOCLR | This | Modification used if shape has double shadow | ||
pictureFillCrMod | 269 | MSOCLR | undefined | |||
pictureLineCrMod | 270 | MSOCLR | undefined | |||
pibPrint | 271 | IMsoBlip* | NULL | Blip to display when printing | ||
pibPrintName | 272 | WCHAR* | NULL | Blip file name | ||
pibPrintFlags | 273 | MSOBLIPFLAGS | Comment | Blip flags | ||
fNoHitTestPicture | 316 | BOOL | FALSE | Do not hit test the picture | ||
pictureGray | 317 | BOOL | FALSE | grayscale display | ||
pictureBiLevel | 318 | BOOL | FALSE | bi-level display | ||
pictureActive | 319 | BOOL | FALSE | Server is active (OLE objects only) |
Property | PID | Type | Default | Description |
geoLeft | 320 | LONG | 0 | Defines the G (geometry) coordinate space. |
geoTop | 321 | LONG | 0 | |
geoRight | 322 | LONG | 21600 | |
geoBottom | 323 | LONG | 21600 | |
shapePath | 324 | MSOSHAPEPATH | msoshapeLinesClosed | |
pVertices | 325 | IMsoArray | NULL | An array of points, in G units. |
pSegmentInfo | 326 | IMsoArray | NULL | |
adjustValue | 327 | LONG | 0 | Adjustment values corresponding to the positions of the adjust handles of the shape. The number of values used and their allowable ranges vary from shape type to shape type. |
adjust2Value | 328 | LONG | 0 | |
adjust3Value | 329 | LONG | 0 | |
adjust4Value | 330 | LONG | 0 | |
adjust5Value | 331 | LONG | 0 | |
adjust6Value | 332 | LONG | 0 | |
adjust7Value | 333 | LONG | 0 | |
adjust8Value | 334 | LONG | 0 | |
adjust9Value | 335 | LONG | 0 | |
adjust10Value | 336 | LONG | 0 | |
fShadowOK | 378 | BOOL | TRUE | Shadow may be set |
f3DOK | 379 | BOOL | TRUE | 3D may be set |
fLineOK | 380 | BOOL | TRUE | Line style may be set |
fGtextOK | 381 | BOOL | FALSE | Text effect (WordArt) supported |
fFillShadeShapeOK | 382 | BOOL | FALSE | |
fFillOK | 383 | BOOL | TRUE | OK to fill the shape through the UI or VBA? |
Property | PID | Type | Default | Description | ||
fillType | 384 | MSOFILLTYPE | Solid | Type of fill | ||
fillColor | 385 | MSOCLR | white | Foreground color | ||
fillOpacity | 386 | LONG | 1<<16 | Fixed 16.16 | ||
fillBackColor | 387 | MSOCLR | white | Background color | ||
fillBackOpacity | 388 | LONG | 1<<16 | Shades only | ||
fillCrMod | 389 | MSOCLR | undefined | Modification for BW views | ||
fillBlip | 390 | IMsoBlip* | NULL | Pattern/texture | ||
fillBlipName | 391 | WCHAR* | NULL | Blip file name | ||
fillBlipFlags | 392 | MSOBLIPFLAGS | Comment | Blip flags | ||
fillWidth | 393 | LONG | 0 | How big (A units) to make a metafile texture. | ||
fillHeight | 394 | LONG | 0 | |||
fillAngle | 395 | LONG | 0 | Fade angle - degrees in 16.16 | ||
fillFocus | 396 | LONG | 0 | Linear shaded fill focus percent | ||
fillToLeft | 397 | LONG | 0 | Fraction 16.16 | ||
fillToTop | 398 | LONG | 0 | Fraction 16.16 | ||
fillToRight | 399 | LONG | 0 | Fraction 16.16 | ||
fillToBottom | 400 | LONG | 0 | Fraction 16.16 | ||
fillRectLeft | 401 | LONG | 0 | For shaded fills, use the specified rectangle instead of the shape's bounding rect to define how large the fade is going to be. | ||
fillRectTop | 402 | LONG | 0 | |||
fillRectRight | 403 | LONG | 0 | |||
fillRectBottom | 404 | LONG | 0 | |||
fillDztype | 405 | MSODZTYPE | Default | |||
fillShadePreset | 406 | LONG | 0 | Special shades | ||
fillShadeColors | 407 | IMsoArray | NULL | a preset array of colors | ||
fillOriginX | 408 | LONG | 0 | |||
fillOriginY | 409 | LONG | 0 | |||
fillShapeOriginX | 410 | LONG | 0 | |||
fillShapeOriginY | 411 | LONG | 0 | |||
fillShadeType | 412 | MSOSHADETYPE | Default | Type of shading, if a shaded (gradient) fill. | ||
fFilled | 443 | BOOL | TRUE | Is shape filled? | ||
fHitTestFill | 444 | BOOL | TRUE | Should we hit test fill? | ||
fillShape | 445 | BOOL | TRUE | Register pattern on shape | ||
fillUseRect | 446 | BOOL | FALSE | Use the large rect? | ||
fNoFillHitTest | 447 | BOOL | FALSE | Hit test a shape as though filled |
Property | PID | Type | Default | Description |
lineColor | 448 | MSOCLR | black | Color of line |
lineOpacity | 449 | LONG | 1<<16 | Not implemented |
lineBackColor | 450 | MSOCLR | white | Background color |
lineCrMod | 451 | MSOCLR | undefined | Modification for BW views |
lineType | 452 | MSOLINETYPE | Solid | Type of line |
lineFillBlip | 453 | IMsoBlip* | NULL | Pattern/texture |
lineFillBlipName | 454 | WCHAR* | NULL | Blip file name |
lineFillBlipFlags | 455 | MSOBLIPFLAGS | Comment | Blip flags |
lineFillWidth | 456 | LONG | 0 | How big (A units) to make a metafile texture. |
lineFillHeight | 457 | LONG | 0 | |
lineFillDztype | 458 | MSODZTYPE | Default | How to interpret fillWidth/Height numbers. |
lineWidth | 459 | LONG | 9525 | A units; 1pt == 12700 EMUs |
lineMiterLimit | 460 | LONG | 8<<16 | ratio (16.16) of width |
lineStyle | 461 | MSOLINESTYLE | Simple | Draw parallel lines? |
lineDashing | 462 | MSOLINEDASHING | Solid | Can be overridden by: |
lineDashStyle | 463 | IMsoArray | NULL | As Win32 ExtCreatePen |
lineStartArrowhead | 464 | MSOLINEEND | NoEnd | Arrow at start |
lineEndArrowhead | 465 | MSOLINEEND | NoEnd | Arrow at end |
lineStartArrowWidth | 466 | MSOLINEENDWIDTH | MediumWidthArrow | Arrow at start |
lineStartArrowLength | 467 | MSOLINEENDLENGTH | MediumLenArrow | Arrow at end |
lineEndArrowWidth | 468 | MSOLINEENDWIDTH | MediumWidthArrow | Arrow at start |
lineEndArrowLength | 469 | MSOLINEENDLENGTH | MediumLenArrow | Arrow at end |
lineJoinStyle | 470 | MSOLINEJOIN | JoinRound | How to join lines |
lineEndCapStyle | 471 | MSOLINECAP | EndCapFlat | How to end lines |
fArrowheadsOK | 507 | BOOL | FALSE | Allow arrowheads if prop. is set |
fLine | 508 | BOOL | TRUE | Any line? |
fHitTestLine | 509 | BOOL | TRUE | Should we hit test lines? |
lineFillShape | 510 | BOOL | TRUE | Register pattern on shape |
fNoLineDrawDash | 511 | BOOL | FALSE | Draw a dashed line if no line |
Property | PID | Type | Default | Description |
shadowType | 512 | MSOSHADOWTYPE | Offset | Type of effect |
shadowColor | 513 | MSOCLR | 0x808080 | Foreground color |
shadowHighlight | 514 | MSOCLR | 0xCBCBCB | Embossed color |
shadowCrMod | 515 | MSOCLR | undefined | Modification for BW views |
shadowOpacity | 516 | LONG | 1<<16 | Fixed 16.16 |
shadowOffsetX | 517 | LONG | 25400 | Offset shadow |
shadowOffsetY | 518 | LONG | 25400 | Offset shadow |
shadowSecondOffsetX | 519 | LONG | 0 | Double offset shadow |
shadowSecondOffsetY | 520 | LONG | 0 | Double offset shadow |
shadowScaleXToX | 521 | LONG | 1<<16 | 16.16 |
shadowScaleYToX | 522 | LONG | 0 | 16.16 |
shadowScaleXToY | 523 | LONG | 0 | 16.16 |
shadowScaleYToY | 524 | LONG | 1<<16 | 16.16 |
shadowPerspectiveX | 525 | LONG | 0 | 16.16 / weight |
shadowPerspectiveY | 526 | LONG | 0 | 16.16 / weight |
shadowWeight | 527 | LONG | 1<<8 | scaling factor |
shadowOriginX | 528 | LONG | 0 | |
shadowOriginY | 529 | LONG | 0 | |
fShadow | 574 | BOOL | FALSE | Any shadow? |
fshadowObscured | 575 | BOOL | FALSE | Excel5-style shadow |
msoxformAbsolute | Equivalent to msoshadowRich |
msoxformShape | Equivalent to msoshadowShape |
msoxformDrawing | Equivalent to msoshadowDrawing |
Property | PID | Type | Default | Description |
perspectiveType | 576 | MSOXFORMTYPE | Shape | Where transform applies |
perspectiveOffsetX | 577 | LONG | 0 | The LONG values define a transformation matrix, effectively, each value is scaled by the perspectiveWeight parameter. |
perspectiveOffsetY | 578 | LONG | 0 | |
perspectiveScaleXToX | 579 | LONG | 1<<16 | |
perspectiveScaleYToX | 580 | LONG | 0 | |
perspectiveScaleXToY | 581 | LONG | 0 | |
perspectiveScaleYToY | 582 | LONG | 1<<16 | |
perspectivePerspectiveX | 583 | LONG | 0 | |
perspectivePerspectiveY | 584 | LONG | 0 | |
perspectiveWeight | 585 | LONG | 1<<8 | Scaling factor |
perspectiveOriginX | 586 | LONG | 1<<15 | |
perspectiveOriginY | 587 | LONG | 1<<15 | |
fPerspective | 639 | BOOL | FALSE | On/off |
Property | PID | Type | Default | Description | ||
c3DSpecularAmt | 640 | LONG | 0 | Fixed-point 16.16 | ||
c3DDiffuseAmt | 641 | LONG | 65536 | Fixed-point 16.16 | ||
c3DShininess | 642 | LONG | 5 | Default gives OK results | ||
c3DEdgeThickness | 643 | LONG | 12700 | Specular edge thickness | ||
c3DExtrudeForward | 644 | LONG | 0 | Distance of extrusion in EMUs | ||
c3DExtrudeBackward | 645 | LONG | 457200 | |||
c3DExtrudePlane | 646 | LONG | 0 | Extrusion direction | ||
c3DExtrusionColor | 647 | MSOCLR | FillThenLine | Basic color of extruded part of shape; the lighting model used will determine the exact shades used when rendering. | ||
c3DCrMod | 648 | MSOCLR | undefined | Modification for BW views | ||
f3D | 700 | BOOL | FALSE | Does this shape have a 3D effect? | ||
fc3DMetallic | 701 | BOOL | 0 | Use metallic specularity? | ||
fc3DUseExtrusionColor | 702 | BOOL | FALSE | |||
fc3DLightFace | 703 | BOOL | TRUE |
Property | PID | Type | Default | Description |
c3DYRotationAngle | 704 | LONG | 0 | degrees (16.16) about y axis |
c3DXRotationAngle | 705 | LONG | 0 | degrees (16.16) about x axis |
c3DRotationAxisX | 706 | LONG | 100 | These specify the rotation axis; only their relative magnitudes matter. |
c3DRotationAxisY | 707 | LONG | 0 | |
c3DRotationAxisZ | 708 | LONG | 0 | |
c3DRotationAngle | 709 | LONG | 0 | degrees (16.16) about axis |
c3DRotationCenterX | 710 | LONG | 0 | rotation center x (16.16 or g-units) |
c3DRotationCenterY | 711 | LONG | 0 | rotation center y (16.16 or g-units) |
c3DRotationCenterZ | 712 | LONG | 0 | rotation center z (absolute (emus)) |
c3DRenderMode | 713 | MSO3DRENDERMODE | FullRender | Full,wireframe, or bcube |
c3DTolerance | 714 | LONG | 30000 | pixels (16.16) |
c3DXViewpoint | 715 | LONG | 1250000 | X view point (emus) |
c3DYViewpoint | 716 | LONG | -1250000 | Y view point (emus) |
c3DZViewpoint | 717 | LONG | 9000000 | Z view distance (emus) |
c3DOriginX | 718 | LONG | 32768 | |
c3DOriginY | 719 | LONG | -32768 | |
c3DSkewAngle | 720 | LONG | -8847360 | degree (16.16) skew angle |
c3DSkewAmount | 721 | LONG | 50 | Percentage skew amount |
c3DAmbientIntensity | 722 | LONG | 20000 | Fixed point intensity |
c3DKeyX | 723 | LONG | 50000 | Key light source direc- |
c3DKeyY | 724 | LONG | 0 | tion; only their relative |
c3DKeyZ | 725 | LONG | 10000 | magnitudes matter |
c3DKeyIntensity | 726 | LONG | 38000 | Fixed point intensity |
c3DFillX | 727 | LONG | -50000 | Fill light source direc- |
c3DFillY | 728 | LONG | 0 | tion; only their relative |
c3DFillZ | 729 | LONG | 10000 | magnitudes matter |
c3DFillIntensity | 730 | LONG | 38000 | Fixed point intensity |
fc3DConstrainRotation | 763 | BOOL | TRUE | |
fc3DRotationCenterAuto | 764 | BOOL | FALSE | |
fc3DParallel | 765 | BOOL | 1 | Parallel projection? |
fc3DKeyHarsh | 766 | BOOL | 1 | Is key lighting harsh? |
fc3DFillHarsh | 767 | BOOL | 0 | Is fill lighting harsh? |
Property | PID | Type | Default | Description | ||
hspMaster | 769 | MSOHSP | NULL | master shape | ||
cxstyle | 771 | MSOCXSTYLE | None | Type of connector | ||
bWMode | 772 | MSOBWMODE | Automatic | Settings for modifications to be made when in different forms of black-and-white mode. | ||
bWModePureBW | 773 | MSOBWMODE | Automatic | |||
bWModeBW | 774 | MSOBWMODE | Automatic | |||
fOleIcon | 826 | BOOL | FALSE | For OLE objects, whether the object is in icon form | ||
fPreferRelativeResize | 827 | BOOL | FALSE | For UI only. Prefer relative resizing. | ||
fLockShapeType | 828 | BOOL | FALSE | Lock the shape type (don't allow Change Shape) | ||
fDeleteAttachedObject | 830 | BOOL | FALSE | |||
fBackground | 831 | BOOL | FALSE | If TRUE, this is the background shape. |
Property | PID | Type | Default | Description |
spcot | 832 | MSOSPCOT | TwoSegment | Callout type |
dxyCalloutGap | 833 | LONG | 1/12 inch | Distance from box to first point.(EMUs) |
spcoa | 834 | MSOSPCOA | Any | Callout angle |
spcod | 835 | MSOSPCOD | Specified | Callout drop type |
dxyCalloutDropSpecified | 836 | LONG | 9 points | if msospcodSpecified, the actual drop distance |
dxyCalloutLengthSpecified | 837 | LONG | 0 | if fCalloutLengthSpecified, the actual distance |
fCallout | 889 | BOOL | FALSE | Is the shape a callout? |
fCalloutAccentBar | 890 | BOOL | FALSE | does callout have accent bar |
fCalloutTextBorder | 891 | BOOL | TRUE | does callout have a text border |
fCalloutMinusX | 892 | BOOL | FALSE | |
fCalloutMinusY | 893 | BOOL | FALSE | |
fCalloutDropAuto | 894 | BOOL | FALSE | If true, then we occasionally invert the drop distance |
fCalloutLengthSpecified | 895 | BOOL | FALSE | if true, we look at dxyCalloutLengthSpecified |
Property | PID | Type | Default | Description |
wzName | 896 | WCHAR* | NULL | Shape Name (present only if explicitly set) |
wzDescription | 897 | WCHAR* | NULL | alternate text |
pihlShape | 898 | IHlink* | NULL | The hyperlink in the shape. |
pWrapPolygonVertices | 899 | IMsoArray | NULL | The polygon that text will be wrapped around (Word) |
dxWrapDistLeft | 900 | LONG | 1/8 inch | Left wrapping distance from text (Word) |
dyWrapDistTop | 901 | LONG | 0 | Top wrapping distance from text (Word) |
dxWrapDistRight | 902 | LONG | 1/8 inch | Right wrapping distance from text (Word) |
dyWrapDistBottom | 903 | LONG | 0 | Bottom wrapping distance from text (Word) |
lidRegroup | 904 | LONG | 0 | Regroup ID |
fEditedWrap | 953 | BOOL | FALSE | Has the wrap polygon been edited? |
fBehindDocument | 954 | BOOL | FALSE | Word-only (shape is behind text) |
fOnDblClickNotify | 955 | BOOL | FALSE | Notify client on a double click |
fIsButton | 956 | BOOL | FALSE | A button shape (i.e., clicking performs an action). Set for shapes with attached hyperlinks or macros. |
fOneD | 957 | BOOL | FALSE | 1D adjustment |
fHidden | 958 | BOOL | FALSE | Do not display |
fPrint | 959 | BOOL | TRUE | Print this shape |
Date | Change | |
1/11/96 | Created the document. Left work to be done in the BStore and Complex shape properties. | |
1/23/97 | Extensively updated and reorganized document. Added overview and shape hierarchy information. Added more complete shape property information. | |
4/15/97 | Add details on compression of Metafile Blips. See section "Metafile/PICT Blips" |
typedef enum
{
msocolorFlagPaletteIndex, // PALETTEINDEX macro
msocolorFlagPaletteRGB, // PALETTERGB macro
msocolorFlagSystemRGB, // MSOSYSTEMRGB
msocolorFlagSchemeIndex, // MSOSCHEMECOLOR
msocolorFlagSysIndex, // MSOSYSCOLOR
} MSOCOLORINDEX;
Windows defines the first two. The third (SystemRGB) is a flag that it set on an otherwise normal RGB value to indicate to the rendering engine to bypass its normal halftone dithering process and just render the color directly using Windows.
The presence of either of the last two flags indicates that the low three bytes are an index into a predefined array of colors. For SchemeIndex colors, the host application provides the translation to RGB colors when necessary (PowerPoint and Excel both use this). SysIndex colors are indices into colors tracked by Escher itself:
typedef enum
{
msosyscolorButtonFace, // COLOR_BTNFACE
msosyscolorWindowText, // COLOR_WINDOWTEXT
msosyscolorMenu, // COLOR_MENU
msosyscolorHighlight, // COLOR_HIGHLIGHT
msosyscolorHighlightText, // COLOR_HIGHLIGHTTEXT
msosyscolorCaptionText, // COLOR_CAPTIONTEXT
msosyscolorActiveCaption, // COLOR_ACTIVECAPTION
msosyscolorButtonHighlight, // COLOR_BTNHIGHLIGHT
msosyscolorButtonShadow, // COLOR_BTNSHADOW
msosyscolorButtonText, // COLOR_BTNTEXT
msosyscolorGrayText, // COLOR_GRAYTEXT
msosyscolorInactiveCaption, // COLOR_INACTIVECAPTION
msosyscolorInactiveCaptionText, // COLOR_INACTIVECAPTIONTEXT
msosyscolorInfoBackground, // COLOR_INFOBK
msosyscolorInfoText, // COLOR_INFOTEXT
msosyscolorMenuText, // COLOR_MENUTEXT
msosyscolorScrollbar, // COLOR_SCROLLBAR
msosyscolorWindow, // COLOR_WINDOW
msosyscolorWindowFrame, // COLOR_WINDOWFRAME
msosyscolor3DLight, // COLOR_3DLIGHT
msosyscolorMax, // Count of system colors
msocolorFillColor =0xF0, // Use the fillColor property
msocolorLineOrFillColor, // Use the line color only if there is a line
msocolorLineColor, // Use the lineColor property
msocolorShadowColor, // Use the shadow color
msocolorThis, // Use this color (only valid as described below)
msocolorFillBackColor, // Use the fillBackColor property
msocolorLineBackColor, // Use the lineBackColor property
msocolorFillThenLine, // Use the fillColor unless no fill and line
msocolorIndexMask =0xFF, // Extract the color index
msocolorProcessMask =0xFFFF00, // All the processing bits
msocolorModificationMask =0x0F00, // Just the function
msocolorModFlagMask =0xF000, // Just the additional flags
msocolorDarken =0x0100, // Darken color by parameter/255
msocolorLighten =0x0200, // Lighten color by parameter/255
msocolorAdd =0x0300, // Add grey level RGB(param,param,param)
msocolorSubtract =0x0400, // Subtract grey level RGB(p,p,p)
msocolorReverseSubtract =0x0500, // Subtract from grey level RGB(p,p,p)
/* In the following "black" means maximum component value, white minimum.
The operation is per component, to guarantee white combine with
msocolorGray */
msocolorBlackWhite =0x0600, // Black if < uParam, else white (>=)
msocolorInvert =0x2000, // Invert color (at the *end*)
msocolorInvert128 =0x4000, // Invert by toggling the top bit
msocolorGray =0x8000, // Make the color gray (before the above!)
msocolorBParamMask =0xFF0000, // Parameter used as above
msocolorBParamShift =16, // To extract the parameter value
}
MSOSYSCOLORINDEX;
< >
< >
typedef enum
{
msosptMin = 0,
msosptNotPrimitive = msosptMin,
msosptRectangle = 1,
msosptRoundRectangle = 2,
msosptEllipse = 3,
msosptDiamond = 4,
msosptIsocelesTriangle = 5,
msosptRightTriangle = 6,
msosptParallelogram = 7,
msosptTrapezoid = 8,
msosptHexagon = 9,
msosptOctagon = 10,
msosptPlus = 11,
msosptStar = 12,
msosptArrow = 13,
msosptThickArrow = 14,
msosptHomePlate = 15,
msosptCube = 16,
msosptBalloon = 17,
msosptSeal = 18,
msosptArc = 19,
msosptLine = 20,
msosptPlaque = 21,
msosptCan = 22,
msosptDonut = 23,
msosptTextSimple = 24,
msosptTextOctagon = 25,
msosptTextHexagon = 26,
msosptTextCurve = 27,
msosptTextWave = 28,
msosptTextRing = 29,
msosptTextOnCurve = 30,
msosptTextOnRing = 31,
msosptStraightConnector1 = 32,
msosptBentConnector2 = 33,
msosptBentConnector3 = 34,
msosptBentConnector4 = 35,
msosptBentConnector5 = 36,
msosptCurvedConnector2 = 37,
msosptCurvedConnector3 = 38,
msosptCurvedConnector4 = 39,
msosptCurvedConnector5 = 40,
msosptCallout1 = 41,
msosptCallout2 = 42,
msosptCallout3 = 43,
msosptAccentCallout1 = 44,
msosptAccentCallout2 = 45,
msosptAccentCallout3 = 46,
msosptBorderCallout1 = 47,
msosptBorderCallout2 = 48,
msosptBorderCallout3 = 49,
msosptAccentBorderCallout1 = 50,
msosptAccentBorderCallout2 = 51,
msosptAccentBorderCallout3 = 52,
msosptRibbon = 53,
msosptRibbon2 = 54,
msosptChevron = 55,
msosptPentagon = 56,
msosptNoSmoking = 57,
msosptSeal8 = 58,
msosptSeal16 = 59,
msosptSeal32 = 60,
msosptWedgeRectCallout = 61,
msosptWedgeRRectCallout = 62,
msosptWedgeEllipseCallout = 63,
msosptWave = 64,
msosptFoldedCorner = 65,
msosptLeftArrow = 66,
msosptDownArrow = 67,
msosptUpArrow = 68,
msosptLeftRightArrow = 69,
msosptUpDownArrow = 70,
msosptIrregularSeal1 = 71,
msosptIrregularSeal2 = 72,
msosptLightningBolt = 73,
msosptHeart = 74,
msosptPictureFrame = 75,
msosptQuadArrow = 76,
msosptLeftArrowCallout = 77,
msosptRightArrowCallout = 78,
msosptUpArrowCallout = 79,
msosptDownArrowCallout = 80,
msosptLeftRightArrowCallout = 81,
msosptUpDownArrowCallout = 82,
msosptQuadArrowCallout = 83,
msosptBevel = 84,
msosptLeftBracket = 85,
msosptRightBracket = 86,
msosptLeftBrace = 87,
msosptRightBrace = 88,
msosptLeftUpArrow = 89,
msosptBentUpArrow = 90,
msosptBentArrow = 91,
msosptSeal24 = 92,
msosptStripedRightArrow = 93,
msosptNotchedRightArrow = 94,
msosptBlockArc = 95,
msosptSmileyFace = 96,
msosptVerticalScroll = 97,
msosptHorizontalScroll = 98,
msosptCircularArrow = 99,
msosptNotchedCircularArrow = 100,
msosptUturnArrow = 101,
msosptCurvedRightArrow = 102,
msosptCurvedLeftArrow = 103,
msosptCurvedUpArrow = 104,
msosptCurvedDownArrow = 105,
msosptCloudCallout = 106,
msosptEllipseRibbon = 107,
msosptEllipseRibbon2 = 108,
msosptFlowChartProcess = 109,
msosptFlowChartDecision = 110,
msosptFlowChartInputOutput = 111,
msosptFlowChartPredefinedProcess = 112,
msosptFlowChartInternalStorage = 113,
msosptFlowChartDocument = 114,
msosptFlowChartMultidocument = 115,
msosptFlowChartTerminator = 116,
msosptFlowChartPreparation = 117,
msosptFlowChartManualInput = 118,
msosptFlowChartManualOperation = 119,
msosptFlowChartConnector = 120,
msosptFlowChartPunchedCard = 121,
msosptFlowChartPunchedTape = 122,
msosptFlowChartSummingJunction = 123,
msosptFlowChartOr = 124,
msosptFlowChartCollate = 125,
msosptFlowChartSort = 126,
msosptFlowChartExtract = 127,
msosptFlowChartMerge = 128,
msosptFlowChartOfflineStorage = 129,
msosptFlowChartOnlineStorage = 130,
msosptFlowChartMagneticTape = 131,
msosptFlowChartMagneticDisk = 132,
msosptFlowChartMagneticDrum = 133,
msosptFlowChartDisplay = 134,
msosptFlowChartDelay = 135,
msosptTextPlainText = 136,
msosptTextStop = 137,
msosptTextTriangle = 138,
msosptTextTriangleInverted = 139,
msosptTextChevron = 140,
msosptTextChevronInverted = 141,
msosptTextRingInside = 142,
msosptTextRingOutside = 143,
msosptTextArchUpCurve = 144,
msosptTextArchDownCurve = 145,
msosptTextCircleCurve = 146,
msosptTextButtonCurve = 147,
msosptTextArchUpPour = 148,
msosptTextArchDownPour = 149,
msosptTextCirclePour = 150,
msosptTextButtonPour = 151,
msosptTextCurveUp = 152,
msosptTextCurveDown = 153,
msosptTextCascadeUp = 154,
msosptTextCascadeDown = 155,
msosptTextWave1 = 156,
msosptTextWave2 = 157,
msosptTextWave3 = 158,
msosptTextWave4 = 159,
msosptTextInflate = 160,
msosptTextDeflate = 161,
msosptTextInflateBottom = 162,
msosptTextDeflateBottom = 163,
msosptTextInflateTop = 164,
msosptTextDeflateTop = 165,
msosptTextDeflateInflate = 166,
msosptTextDeflateInflateDeflate = 167,
msosptTextFadeRight = 168,
msosptTextFadeLeft = 169,
msosptTextFadeUp = 170,
msosptTextFadeDown = 171,
msosptTextSlantUp = 172,
msosptTextSlantDown = 173,
msosptTextCanUp = 174,
msosptTextCanDown = 175,
msosptFlowChartAlternateProcess = 176,
msosptFlowChartOffpageConnector = 177,
msosptCallout90 = 178,
msosptAccentCallout90 = 179,
msosptBorderCallout90 = 180,
msosptAccentBorderCallout90 = 181,
msosptLeftRightUpArrow = 182,
msosptSun = 183,
msosptMoon = 184,
msosptBracketPair = 185,
msosptBracePair = 186,
msosptSeal4 = 187,
msosptDoubleWave = 188,
msosptActionButtonBlank = 189,
msosptActionButtonHome = 190,
msosptActionButtonHelp = 191,
msosptActionButtonInformation = 192,
msosptActionButtonForwardNext = 193,
msosptActionButtonBackPrevious = 194,
msosptActionButtonEnd = 195,
msosptActionButtonBeginning = 196,
msosptActionButtonReturn = 197,
msosptActionButtonDocument = 198,
msosptActionButtonSound = 199,
msosptActionButtonMovie = 200,
msosptHostControl = 201,
msosptTextBox = 202,
msosptMax,
msosptNil = 0x0FFF,
} MSOSPT;
< >
< >
// MSOSHAPEPATH
typedef enum
{
msoshapeLines, // A line of straight segments
msoshapeLinesClosed, // A closed polygonal object
msoshapeCurves, // A line of Bezier curve segments
msoshapeCurvesClosed, // A closed shape with curved edges
msoshapeComplex, // pSegmentInfo must be non-empty
} MSOSHAPEPATH;
// MSOWRAPMODE
typedef enum
{
msowrapSquare,
msowrapByPoints,
msowrapNone,
msowrapTopBottom,
msowrapThrough,
} MSOWRAPMODE;
// MSOBWMODE
typedef enum
{
msobwColor, // only used for predefined shades
msobwAutomatic, // depends on object type
msobwGrayScale, // shades of gray only
msobwLightGrayScale, // shades of light gray only
msobwInverseGray, // dark gray mapped to light gray, etc.
msobwGrayOutline, // pure gray and white
msobwBlackTextLine, // black text and lines, all else grayscale
msobwHighContrast, // pure black and white mode (no grays)
msobwBlack, // solid black
msobwWhite, // solid white
msobwDontShow, // object not drawn
msobwNumModes // number of Black and white modes
} MSOBWMODE;
// MSOANCHOR
typedef enum
{
msoanchorTop,
msoanchorMiddle,
msoanchorBottom,
msoanchorTopCentered,
msoanchorMiddleCentered,
msoanchorBottomCentered,
msoanchorTopBaseline,
msoanchorBottomBaseline,
msoanchorTopCenteredBaseline,
msoanchorBottomCenteredBaseline
} MSOANCHOR;
// MSOCDIR
typedef enum
{
msocdir0, // Right
msocdir90, // Down
msocdir180, // Left
msocdir270 // Up
} MSOCDIR;
// MSOCXSTYLE – connector style
typedef enum
{
msocxstyleStraight = 0,
msocxstyleBent,
msocxstyleCurved,
msocxstyleNone
} MSOCXSTYLE;
// MSOTXFL -- text flow
typedef enum
{
msotxflHorzN, // Horizontal non-@
msotxflTtoBA, // Top to Bottom @-font
msotxflBtoT, // Bottom to Top non-@
msotxflTtoBN, // Top to Bottom non-@
msotxflHorzA, // Horizontal @-font
msotxflVertN, // Vertical, non-@
} MSOTXFL;
// MSOTXDIR - text direction (needed for Bi-Di support)
typedef enum
{
msotxdirLTR, // left-to-right text direction
msotxdirRTL, // right-to-left text direction
msotxdirContext, // context text direction
} MSOTXDIR;
// MSOSPCOT -- Callout Type
typedef enum
{
msospcotRightAngle = 1,
msospcotOneSegment = 2,
msospcotTwoSegment = 3,
msospcotThreeSegment = 4,
} MSOSPCOT;
// MSOSPCOA -- Callout Angle
typedef enum
{
msospcoaAny,
msospcoa30,
msospcoa45,
msospcoa60,
msospcoa90,
msospcoa0,
} MSOSPCOA;
// MSOSPCOD -- Callout Drop
typedef enum
{
msospcodTop,
msospcodCenter,
msospcodBottom,
msospcodSpecified,
} MSOSPCOD;
// MSOGEOTEXTALIGN – WordArt alignment
typedef enum
{
msoalignTextStretch, /* Stretch each line of text to fit width. */
msoalignTextCenter, /* Center text on width. */
msoalignTextLeft, /* Left justify. */
msoalignTextRight, /* Right justify. */
msoalignTextLetterJust, /* Spread letters out to fit width. */
msoalignTextWordJust, /* Spread words out to fit width. */
msoalignTextInvalid /* Invalid */
} MSOGEOTEXTALIGN;
// MSOBLIPFLAGS – flags for pictures
typedef enum
{
msoblipflagDefault = 0,
msoblipflagComment = 0, // Blip name is a comment
msoblipflagFile, // Blip name is a file name
msoblipflagURL, // Blip name is a full URL
msoblipflagType = 3, // Mask to extract type
/* Or the following flags with any of the above. */
msoblipflagDontSave = 4, // A "dont" is the depression in the metal
// body work of an automobile caused when a
// cyclist violently thrusts his or her nose
// at it, thus a DontSave is another name for
// a cycle lane.
msoblipflagDoNotSave = 4, // For those who prefer English
msoblipflagLinkToFile = 8,
} MSOBLIPFLAGS;
// MSO3DRENDERMODE
typedef enum
{
msoFullRender, // Generate a full rendering
msoWireframe, // Generate a wireframe
msoBoundingCube, // Generate a bounding cube
} MSO3DRENDERMODE;
// MSOXFORMTYPE
typedef enum
{
msoxformAbsolute, // Apply transform in absolute space centered on shape
msoxformShape, // Apply transform to shape geometry
msoxformDrawing // Apply transform in drawing space
} MSOXFORMTYPE;
// MSOSHADOWTYPE
typedef enum
{
msoshadowOffset, // N pixel offset shadow
msoshadowDouble, // Use second offset too
msoshadowRich, // Rich perspective shadow (cast relative to shape)
msoshadowShape, // Rich perspective shadow (cast in shape space)
msoshadowDrawing, // Perspective shadow cast in drawing space
msoshadowEmbossOrEngrave,
} MSOSHADOWTYPE;
// MSODZTYPE - the type of a (length) measurement
typedef enum
{
msodztypeMin = 0,
msodztypeDefault = 0, // Default size, ignore the values
msodztypeA = 1, // Values are in EMUs
msodztypeV = 2, // Values are in pixels
msodztypeShape = 3, // Values are 16.16 fractions of shape size
msodztypeFixedAspect = 4, // Aspect ratio is fixed
msodztypeAFixed = 5, // EMUs, fixed aspect ratio
msodztypeVFixed = 6, // Pixels, fixed aspect ratio
msodztypeShapeFixed = 7, // Proportion of shape, fixed aspect ratio
msodztypeFixedAspectEnlarge
= 8, // Aspect ratio is fixed, favor larger size
msodztypeAFixedBig = 9, // EMUs, fixed aspect ratio
msodztypeVFixedBig = 10, // Pixels, fixed aspect ratio
msodztypeShapeFixedBig= 11, // Proportion of shape, fixed aspect ratio
msodztypeMax = 11
} MSODZTYPE;
// MSOFILLTYPE
typedef enum
{
msofillSolid, // Fill with a solid color
msofillPattern, // Fill with a pattern (bitmap)
msofillTexture, // A texture (pattern with its own color map)
msofillPicture, // Center a picture in the shape
msofillShade, // Shade from start to end points
msofillShadeCenter, // Shade from bounding rectangle to end point
msofillShadeShape, // Shade from shape outline to end point
msofillShadeScale, // Similar to msofillShade, but the fillAngle
// is additionally scaled by the aspect ratio of
// the shape. If shape is square, it is the
// same as msofillShade.
msofillShadeTitle, // special type - shade to title --- for PP
msofillBackground // Use the background fill color/pattern
} MSOFILLTYPE;
// MSOSHADETYPE – how to interpret the colors in a shaded fill.
typedef enum
{
msoshadeNone = 0, // Interpolate without correction between RGBs
msoshadeGamma = 1, // Apply gamma correction to colors
msoshadeSigma = 2, // Apply a sigma transfer function to position
msoshadeBand = 4, // Add a flat band at the start of the shade
msoshadeOneColor = 8, // This is a one color shade
/* A parameter for the band or sigma function can be stored in the top
16 bits of the value - this is a proportion of *each* band of the
shade to make flat (or the approximate equal value for a sigma
function). NOTE: the parameter is not used for the sigma function,
instead a built in value is used. This value should not be changed
from the default! */
msoshadeParameterShift = 16,
msoshadeParameterMask = 0xffff0000,
msoshadeDefault = (msoshadeGamma|msoshadeSigma|
(16384<<msoshadeParameterShift))
} MSOSHADETYPE;
// MSOLINESTYLE - compound line style
typedef enum
{
msolineSimple, // Single line (of width lineWidth)
msolineDouble, // Double lines of equal width
msolineThickThin, // Double lines, one thick, one thin
msolineThinThick, // Double lines, reverse order
msolineTriple // Three lines, thin, thick, thin
} MSOLINESTYLE;
// MSOLINETYPE - how to "fill" the line contour
typedef enum
{
msolineSolidType, // Fill with a solid color
msolinePattern, // Fill with a pattern (bitmap)
msolineTexture, // A texture (pattern with its own color map)
msolinePicture // Center a picture in the shape
} MSOLINETYPE;
// MSOLINEDASHING - dashed line style
typedef enum
{
msolineSolid, // Solid (continuous) pen
msolineDashSys, // PS_DASH system dash style
msolineDotSys, // PS_DOT system dash style
msolineDashDotSys, // PS_DASHDOT system dash style
msolineDashDotDotSys, // PS_DASHDOTDOT system dash style
msolineDotGEL, // square dot style
msolineDashGEL, // dash style
msolineLongDashGEL, // long dash style
msolineDashDotGEL, // dash short dash
msolineLongDashDotGEL, // long dash short dash
msolineLongDashDotDotGEL // long dash short dash short dash
} MSOLINEDASHING;
// MSOLINEEND - line end effect
typedef enum
{
msolineNoEnd,
msolineArrowEnd,
msolineArrowStealthEnd,
msolineArrowDiamondEnd,
msolineArrowOvalEnd,
msolineArrowOpenEnd,
} MSOLINEEND;
// MSOLINEENDWIDTH - size of arrowhead
typedef enum
{
msolineNarrowArrow,
msolineMediumWidthArrow,
msolineWideArrow
} MSOLINEENDWIDTH;
// MSOLINEENDLENGTH - size of arrowhead
typedef enum
{
msolineShortArrow,
msolineMediumLenArrow,
msolineLongArrow
} MSOLINEENDLENGTH;
// MSOLINEJOIN - line join style.
typedef enum
{
msolineJoinBevel, // Join edges by a straight line
msolineJoinMiter, // Extend edges until they join
msolineJoinRound // Draw an arc between the two edges
} MSOLINEJOIN;
// MSOLINECAP - line cap style (applies to ends of dash segments too).
typedef enum
{
msolineEndCapRound, // Rounded ends - the default
msolineEndCapSquare, // Square protrudes by half line width
msolineEndCapFlat // Line ends at end point
} MSOLINECAP;