LinkList/XML creates AutoCAD 2007-compatible XML files. It creates
a correctly formatted XML file that lists all of the block definitions and
polylines in the drawing.
The resulting XML file can be used as
the starting point for changing the entities in the drawing.
For each Insert or Polyline defined in
the AutoCAD fiel, LinkList/XML lists:
Sample XML file produced by LinkList/XML:
<?xml
version="1.0"?>
<Drawing>
<BlockRefs>
<BlockRef>
<Name>lote</Name>
<Handle>D5</Handle>
<Color>6</Color>
</BlockRef>
<BlockRef>
<Name>lote</Name>
<Handle>D9</Handle>
<Color>2</Color>
</BlockRef>
<BlockRef>
<Name>lote</Name>
<Handle>DD</Handle>
<Color>3</Color>
</BlockRef>
</BlockRefs>
<Polylines>
<Polyline>
<Handle>C7</Handle>
<Color>1</Color>
<Linetype>ByLayer</Linetype>
</Polyline>
</Polylines>
</Drawing>