Popularity
3.7
Growing
Activity
9.4
-
244
7
50

Programming language: C#
License: MIT License
Tags: Office    
Latest version: v0.36.0

ShapeCrawler alternatives and similar packages

Based on the "Office" category.
Alternatively, view ShapeCrawler alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of ShapeCrawler or a related project?

Add another 'Office' Package

README

[ShapeCrawler](./resources/readme.png)

NuGet Nuget [License](LICENSE)

ShapeCrawler (formerly SlideDotNet) is a .NET library for manipulating PowerPoint presentations. It provides a simplified object model on top of the Open XML SDK to process presentations without having Microsoft Office installed.

Getting Started

install-package ShapeCrawler

Usage

using var pres = SCPresentation.Open("some.pptx");

// get number of slides
var slidesCount = pres.Slides.Count;

// get text of TextBox 
var autoShape = pres.Slides[0].Shapes.GetByName<IAutoShape>("TextBox 1");
var text = autoShape.TextFrame!.Text;

Visit Wiki page to find more usage samples.

Have questions?

If you have a question:

Contributing

How you can contribute?

  • Give a Star⭐ If you find this useful, please give it a star to show your support.
  • Polls. Participate in the voting on Polls discussion.
  • Bug report. If you get some issue, please don't ignore and report this bug on issue page.
  • Code contributing. There are features/bugs tagged with help-wanted label which waiting for your Pull RequestπŸ™‚ Please read Contribution Guide to get more details.


*Note that all licence references and agreements mentioned in the ShapeCrawler README section above are relevant to that project's source code only.