AddSmartArt
ShapeCollection.AddSmartArt method
SmartArt-Diagramm hinzufügen.
public ISmartArt AddSmartArt(float x, float y, float width, float height,
SmartArtLayoutType layoutType)
Parameter | Typ | Beschreibung |
---|---|---|
x | Single | Die X-Koordinate für eine linke Seite des Diagrammrahmens. |
y | Single | Die Y-Koordinate für eine linke Seite des Diagrammrahmens. |
width | Single | Die Breite des Diagrammrahmens. |
height | Single | Die Höhe des Diagrammrahmens. |
layoutType | SmartArtLayoutType | Der Typ des SmartArt-Diagramms |
Rückgabewert
Erstellen Sie ein SmartArt-Diagramm
Beispiele
Beispiel:
[C#]
Presentation pres = new Presentation();
Slide slide = pres.Slides[0];
SmartArt smart = slide.Shapes.AddSmartArt(0, 0, 400, 400, SmartArtLayoutType.BasicBlockList);
[Visual Basic]
Private pres As New Presentation()
Private slide As Slide = pres.Slides(0)
Private smart As SmartArt = slide.Shapes.AddSmartArt(0, 0, 400, 400, SmartArtLayoutType.BasicBlockList)
Siehe auch
- interface ISmartArt
- enum SmartArtLayoutType
- class ShapeCollection
- namensraum Aspose.Slides
- Montage Aspose.Slides