:: 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
|
Top of Page
Copyright © 1995, 2012, Oracle and/or its affiliates. All rights reserved. Oracle and Java are registered trademarks of Oracle and/or its affiliates. Other names may be trademarks of their respective owners.