Difference between revisions of "Documentation/DevGuide/Drawings/Moving and Scaling"

From Apache OpenOffice Wiki
Jump to: navigation, search
m (1 revision(s))
m (Robot: Changing Category:Drawing Documents and Presentation Documents)
Line 19: Line 19:
  
 
{{PDL1}}
 
{{PDL1}}
[[Category: Drawing Documents and Presentation Documents]]
+
 
 +
[[Category:Documentation/Developer's Guide/Drawing Documents and Presentation Documents]]

Revision as of 11:30, 5 June 2008



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