Primo.Office.OdfOxml 1.1.5

dotnet add package Primo.Office.OdfOxml --version 1.1.5                
NuGet\Install-Package Primo.Office.OdfOxml -Version 1.1.5                
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Primo.Office.OdfOxml" Version="1.1.5" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Primo.Office.OdfOxml --version 1.1.5                
#r "nuget: Primo.Office.OdfOxml, 1.1.5"                
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Primo.Office.OdfOxml as a Cake Addin
#addin nuget:?package=Primo.Office.OdfOxml&version=1.1.5

// Install Primo.Office.OdfOxml as a Cake Tool
#tool nuget:?package=Primo.Office.OdfOxml&version=1.1.5                

About

The Primo RPA robot uses elements of the package to automate the processing of Open Document Format for Office Applications (ODF) and Office Open XML (also informally known as OOXML) document and workbook files.

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 "ODF/OXML - Documents" and "ODF/OXML - Tables" nodes with package elements will appear in Elements tree .

Documents

The "ODF document" element is a container for all other elements that are children of the "ODF/OXML - Documents" node. This element is used to connect to ODF/OXML document.
In pure code projects use the element as follows:

//wf: [LTools.Common.Model.WorkflowData] parent algorithm link
//fileName - File path: [String] Path to a text document file (c:\folder\file.odt)
//bytes - Byte array: [byte[]] Document byte array
//pass - Password: [String] Document password
Primo.Office.OdfOxml.WordApp app = Primo.Office.OdfOxml.WordApp.Init(wf, fileName, [interop], [pass]);
Primo.Office.OdfOxml.WordApp app = Primo.Office.OdfOxml.WordApp.Init(wf, bytes, [interop], [pass]);

All other child elements of the "RDF/TO XML - Documents" node should be placed inside the "ODF document" container to process the document. "Find text" element in pure code:

//Searches for specified text in a document. 
//Properties
//app - [Primo.Office.OdfOxml.WordApp] ODF document application
//text - Text: [String] Text
List<int> idxs = app.FindText(text);

Workbooks

The "ODF workbook" element is a container for all other elements that are children of the "ODF/OXML - Tables" node. This element is used to connect to ODF/OXML workbook.
In pure code projects use the element as follows:

//wf: [LTools.Common.Model.WorkflowData] parent algorithm link
//fileName - File path: [String] Path to workbook document (c:\folder\file.ods)
//bytes - Byte array: [byte[]] Workbook bytes array
//csvDel - Delimiter: [String] Column delimiter
//interop - [LTools.Office.Model.InteropTypes] Driver: Connection driver type
//pass - Password: [String] Document password
Primo.Office.OdfOxml.ExcelApp app = Primo.Office.OdfOxml.ExcelApp.Init(wf, fileName, [csvDel], [interop], [loadAddIns], [isAttach], [pass]);
Primo.Office.OdfOxml.ExcelApp app = Primo.Office.OdfOxml.ExcelApp.Init(wf, bytes, [csvDel], [interop], [loadAddIns], [pass]);

All other child elements of the "RDF/TO XML - Tables" node should be placed inside the "ODF workbook" container to process the document.
"Add sheet" element in pure code:

//Element creates a new sheet in a workbook. 
//Properties
//app - [Primo.Office.OdfOxml.ExcelApp] Workbook application
//sheet - Name: [String] Sheet name
//sheetIdx - Index: [Int32] Sheet index
app.SheetAdd(sheet, [sheetIdx]);

Key Features

  • A large set of elements for diverse and high-quality processing of documents and workbooks
  • High performance
  • Supports .NET Framework 4.6.1+

Main Types

  • Primo.Office.OdfOxml.WordApp
  • Primo.Office.OdfOxml.ExcelApp

Feedback

Bug reports and contributions are welcome at Primo RPA chat

Product Compatible and additional computed target framework versions.
.NET Framework net is compatible. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

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.

Version Downloads Last updated
1.1.5 108 11/27/2024
1.1.4 138 10/2/2024
1.1.3 205 8/23/2024
1.1.1 181 5/27/2024
1.0.2 233 3/19/2024
1.0.1 181 1/20/2024