(incubating) | The Free and Open Productivity Suite
Announcing Apache OpenOffice 3.4

Developer's Guide

API

SDK

Tips 'n' Tricks

Miscellaneous

Content for OpenOffice.org version 3.3.

:: com :: sun :: star :: sheet ::

service SpreadsheetDrawPage
Description
This abstract service is implemented by every page of a SpreadsheetDocument.
Example
create and insert a couple of ::com::sun::star::drawing::LineShapes:
 xPage = xDoc.DrawPages(0)
 for x% = 0 to 200
 xShape = xProv.createInstance( "com.sun.star.drawing.LineShape" )
 xShape.LineColor = rgb( 255, 0, n%+20 )
 xShape.LineWidth = 20
 xShape.Position = Point( x%, 2*x% )
 xShape.Size = Size( 300-x%, 20 )
 xPage.add( xShape )
 next x%
 
Since
OOo 1.1.2

Exported Interfaces - Summary
::com::sun::star::drawing::XDrawPage

manages the ::com::sun::star::drawing::Shapes of this page. (details)

::com::sun::star::drawing::XShapeGrouper

With this interface you can group/ungroup a collection of ::com::sun::star::drawing::Shapes.

::com::sun::star::lang::XServiceInfo

returns the services implemented by this instance.

Exported Interfaces - Details
::com::sun::star::drawing::XDrawPage
Description
manages the ::com::sun::star::drawing::Shapes of this page.

It also lets you add new ::com::sun::star::drawing::Shapes. The program currently requires that these ::com::sun::star::drawing::Shapes be created by the factory of the document.

See also
SpreadsheetDocument
::com::sun::star::drawing::XShapeGrouper
Description
With this interface you can group/ungroup a collection of ::com::sun::star::drawing::Shapes.
::com::sun::star::lang::XServiceInfo
Description
returns the services implemented by this instance.

 
Top of Page

Apache Feather

Copyright & License | Privacy | Contact Us

Apache and the Apache feather logos are trademarks of The Apache Software Foundation. OpenOffice.org and the seagull logo are registered trademarks of The Apache Software Foundation. Other names appearing on the site may be trademarks of their respective owners.

Apache OpenOffice is an effort undergoing incubation at The Apache Software Foundation (ASF), sponsored by the Apache Incubator. Incubation is required of all newly accepted projects until a further review indicates that the infrastructure, communications, and decision making process have stabilized in a manner consistent with other successful ASF projects. While incubation status is not necessarily a reflection of the completeness or stability of the code, it does indicate that the project has yet to be fully endorsed by the ASF.