For the complete documentation index, see llms.txt. This page is also available as Markdown.

WriteSpreadsheet

Generate an OpenDocument Spreadsheet .ods file by injecting user inputted JSON data into a built-in template.

Task version: 1.0.0

Required Frends version: 5.7+

Required .NET version: 8.0

Compatible Agents: Crossplatform

Task Parameters

Name
Description

Payload : String

JSON data array to be written into the file.

Default: - Example: [ { "Name": "John", "Age": 40 }, { "Name": "Jane", "Age": 30 } ]

FilePath : String

Full path of the destination for the new .ods file.

Default: - Example: C:\temp\foo.ods

ActionOnExistingFile : ActionOnExistingFile

Defines how the file write should work if a file with the new name already exists.

Possible values:

  • Overwrite: Defines how the file write should work if a file with the new name already exists.

  • Throw: Defines how the file write should work if a file with the new name already exists.

Default: 1 Example: ActionOnExistingFile.Throw

Task Result

Name
Description

Success : Boolean

Indicates if the task completed successfully. Example: true

FilePath : String

Full path to the newly created .ods file. Example: c:\temp\foo.ods

Error : Error

Error that occurred during task execution. Example: object { string Message, Exception AdditionalInfo }

Task Changelog

Changelog for Task Frends.Odf.WriteSpreadsheet.

[1.0.0] - 2026-06-08

Added

  • Initial implementation

Last updated

Was this helpful?