Did you know that the OpenOffice.org Wiki has a WYSIWYG editor? See Help:FCKeditor

Moving and Scaling

From OpenOffice.org Wiki

Jump to: navigation, search



Moving and scaling of a shape can be done by using the corresponding methods getPosition(), setPosition(), getSize() and setSize() of the com.sun.star.drawing.XShape interface:

 string getShapeType()
 com::sun::star::awt::Point getPosition()
 void setPosition( [in] com::sun::star::awt::Point aPosition)
 com::sun::star::awt::Size getSize()
 void setSize( [in] com::sun::star::awt::Size aSize)

Point and Size are IDL structs. In Java, these structs are mapped to classes with constructors that take values for the struct members. Therefore, when new is used to instantiate these classes, the coordinates and dimensions are passed to initialize the class members X, Y, Width and Height.

Content on this page is licensed under the Public Documentation License (PDL).
Personal tools
Create a book
In other languages