AddSmartArt

IShapeCollection.AddSmartArt method

Ajouter un diagramme SmartArt.

public ISmartArt AddSmartArt(float x, float y, float width, float height, 
    SmartArtLayoutType layoutType)
ParamètreTaperLa description
xSingleLa coordonnée X pour un côté gauche du cadre du diagramme.
ySingleLa coordonnée Y pour un côté gauche du cadre du diagramme.
widthSingleLa largeur du cadre du diagramme.
heightSingleLa hauteur du cadre du diagramme.
layoutTypeSmartArtLayoutTypeLe 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