:: ooo :: vba :: excel ::

unpublished interface XDrawings
Usage Restrictions
not published
Description
A collection providing access to all polygon objects in a single sheet.

This symbol is now deprecated in VBA but kept for compatibility with old VBA scripts.


Methods' Summary
Add Adds a new polygon object to the sheet this collection belongs to.  
Methods' Details
Add
any
Add( [in] any  fX1,
[in] any  fY1,
[in] any  fX2,
[in] any  fY2,
[in] any  bClosed );

Description
Adds a new polygon object to the sheet this collection belongs to.
Parameter fX1
Position of the first X coordinate in points (1/72 inch).
Parameter fY1
Position of the first Y coordinate in points (1/72 inch).
Parameter fX2
Position of the last X coordinate in points (1/72 inch).
Parameter fY2
Position of the last Y coordinate in points (1/72 inch).
Parameter bClosed
True = outline closed (last and first point connected).
Returns
The created polygon object.
Top of Page