AddSmartArt
IShapeCollection.AddSmartArt method
Ajouter un diagramme SmartArt.
public ISmartArt AddSmartArt(float x, float y, float width, float height,
SmartArtLayoutType layoutType)
Paramètre | Taper | La description |
---|---|---|
x | Single | La coordonnée X pour un côté gauche du cadre du diagramme. |
y | Single | La coordonnée Y pour un côté gauche du cadre du diagramme. |
width | Single | La largeur du cadre du diagramme. |
height | Single | La hauteur du cadre du diagramme. |
layoutType | SmartArtLayoutType | Le type de diagramme SmartArt |
Return_Value
Créer un diagramme SmartArt
Exemples
Exemple :
[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)
Voir également
- interface ISmartArt
- enum SmartArtLayoutType
- interface IShapeCollection
- espace de noms Aspose.Slides
- Assemblée Aspose.Slides