DXF Group Codes
ENTITIES Section
OLE2FRAME

The following group codes apply to ole2frame entities.This information is read only. During DXFIN, the values are ignored, because they are part of the OLE binary object, and are obtained via access functions.

Ole2frame group codes
Group codes Description

100

Subclass marker (AcDbOle2Frame)

70

OLE version number

3

Length of binary data

10

Upper left corner (WCS). DXF: X value; APP: 3D point

20, 30

DXF: Y and Z values of upper left corner (in WCS)

11

Lower right corner (WCS). DXF: X value; APP: 3D point

21, 31

DXF: Y and Z values of lower right corner (in WCS)

71

OLE object type, 1 = link, 2 = embedded, 3 = static

72

Tile mode descriptor,
0 = object is in a tiled model space viewport
1 = object is in a non-tiled viewport (paper space or  floating model space)

90

Length of binary data

310

Binary data (multiple lines)

1

End of Ole data (the string "OLE")

Sample DXF output:

    OLE2FRAME
      5
    2D
    100
    AcDbEntity
     67
         1
      8
    0
    100
    AcDbOle2Frame
     70
         2
      3
    Paintbrush Picture
     10
    4.43116
     20
    5.665992
     30
    0.0
     11
    6.4188
     21
    4.244939
     31
    0.0
     71
         2
     72
         1
     90
        23680
    310   0155764BD60082B91140114B08C8F9A916400000000000000000506DC0D0D9AC
    310
    1940114B08C8F9A916400000000000000000506DC0D0D9AC194002303E5CD1FA
    310
    10400000000000000000764BD60082B9114002303E5CD1FA1040000000000000
    ...

    ...

AutoLISP entnext function sample output:

    Command:  (setq e (entget e3))
    ((-1 . <Entity name: 7d50428>) (0 . "OLE2FRAME") (5 . "2D")
    (100 . "AcDbEntity") (67 . 1) (8 . "0") (100 . "AcDbOle2Frame")
    (70 . 2) (3 "Paintbrush Picture") (10 4.43116 5.66599 0.0)
    (11 6.4188 4.24494 0.0) (71 . 2) (72 . 1))