Replies: 2 comments
|
No, the library doesn't support SmartArt yet, but yes, it is planned. |
0 replies
|
Here is the current SmartArt Support in ShapeCrawler:
Example usage (for newly created SmartArt only): var pres = new Presentation(p => p.Slide());
var smartArt = pres.Slide(1).Shapes.AddSmartArt(50, 50, 400, 300, SmartArtType.BasicBlockList).SmartArt!;
// Add nodes
var node1 = smartArt.Nodes.AddNode("First Item");
var node2 = smartArt.Nodes.AddNode("Second Item");
// Modify text
node1.Text = "Updated First Item";
pres.Save("output.pptx"); |
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
In the ShapeCrawler library, are there functions or classes available to handle SmartArt, or are there plans to add support functions?
All reactions