Difference between revisions of "API/Samples/StarBasic/Impress/Insert a Chart"

From Apache OpenOffice Wiki
< API‎ | Samples‎ | StarBasic
Jump to: navigation, search
(added some comments)
Line 34: Line 34:
 
[[Category:Impress]]
 
[[Category:Impress]]
 
[[Category:Draw]]
 
[[Category:Draw]]
 +
[[Category:Chart]]

Revision as of 11:28, 25 February 2008

Description: Create a new Chart object on a slide of a presentation or the page of a draw document.
Programming Language: StarBasic
Author: Björn Milcke, 2007

[starbasic] Sub Main

   ' get the first slide
   Set oPage = ThisComponent.getDrawPages().getByIndex(0)
   ' create an OLE2Shape
   Set oOLEShape = ThisComponent.createInstance( "com.sun.star.drawing.OLE2Shape" )

   ' important: first add the shape
   oPage.add( oOLEShape )

   ' then make the OLE object a chart. The class-id is for charts, use exactly this one
   oOLEShape.CLSID = "12dcae26-281f-416f-a234-c3086127382e"

   ' get the chart's model for modification
   Set oChartModel = oOLEShape.Model
   If Not IsNull( oChartModel ) Then
       ' e.g., Set a main title
       oChartModel.HasMainTitle = True
       oChartModel.Title.String = "Created via UNO API"
   EndIf

End Sub

Personal tools