Primo.Office.PowerPoint
1.0.1
dotnet add package Primo.Office.PowerPoint --version 1.0.1
NuGet\Install-Package Primo.Office.PowerPoint -Version 1.0.1
<PackageReference Include="Primo.Office.PowerPoint" Version="1.0.1" />
<PackageVersion Include="Primo.Office.PowerPoint" Version="1.0.1" />
<PackageReference Include="Primo.Office.PowerPoint" />
paket add Primo.Office.PowerPoint --version 1.0.1
#r "nuget: Primo.Office.PowerPoint, 1.0.1"
#:package Primo.Office.PowerPoint@1.0.1
#addin nuget:?package=Primo.Office.PowerPoint&version=1.0.1
#tool nuget:?package=Primo.Office.PowerPoint&version=1.0.1
About
Primo.Office.PowerPoint is a set of ready-to-use activities for Primo RPA Studio designed to automate processing of Microsoft PowerPoint presentations. It addresses the need to create and modify presentations within automated processes. Key activities include: connecting to presentations and adding new slides. The package can be added to any Primo RPA Studio project via the built-in dependency manager.
How to Use
In Primo RPA studio, create a project that will be executed by Primo RPA robot. Install this package via the ".Dependencies → Manage Dependencies" menu; the "MS PowerPoint" node with package elements will appear in Elements tree.
The "PowerPoint presentation" element is a container for all other elements that are children of the "MS PowerPoint" node. This element is used to connect to PowerPoint presentation.
In pure code projects use the element as follows:
//wf: [LTools.Common.Model.WorkflowData] parent algorithm link
//fileName - File path: [String] Path to a PowerPoint presentation (c:\folder\file.pptx)
//bytes - Byte array: [byte[]] Presentation bytes array
Primo.Office.PowerPoint.PowerPointApp app = Primo.Office.PowerPoint.PowerPointApp.Init(wf, fileName);
Primo.Office.PowerPoint.PowerPointApp app = Primo.Office.PowerPoint.PowerPointApp.Init(wf, bytes);
All other child elements of the "MS PowerPoint" node should be placed inside the "PowerPoint presentation" container to process the presentation.
"Add new slide" element in pure code:
//app - [Primo.Office.PowerPoint.PowerPointApp] PowerPoint application
//idx - Index: [Int32] Insert index. Add to the end if not specified
//layout - Layout: [String] Slide layout
//theme - Theme: [String] Slide theme
int newidx = app.AddNewSlide([idx], [layout], [theme]);
Key Features
- A large set of elements for diverse and high-quality processing of presentations
- High performance
- Supports .NET Framework 4.6.1+
Main Types
- Primo.Office.PowerPoint.PowerPointApp
- Primo.Office.PowerPoint.PowerPointInst
Feedback
Bug reports and contributions are welcome at Primo RPA chat
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET Framework | net is compatible. |
This package has no dependencies.
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.