https://github.com/shonharsh/library-tools
[WIP] A UiPath tools library.
https://github.com/shonharsh/library-tools
academic artificial-intelligence atom automation bot config csharp education git guide learning library markdown process rpa studio training-materials trending uipath windows
Last synced: 8 months ago
JSON representation
[WIP] A UiPath tools library.
- Host: GitHub
- URL: https://github.com/shonharsh/library-tools
- Owner: ShonHarsh
- License: mit
- Created: 2024-04-20T18:43:48.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-06-26T21:13:17.000Z (over 1 year ago)
- Last Synced: 2025-02-13T22:36:22.260Z (8 months ago)
- Topics: academic, artificial-intelligence, atom, automation, bot, config, csharp, education, git, guide, learning, library, markdown, process, rpa, studio, training-materials, trending, uipath, windows
- Language: C#
- Homepage:
- Size: 101 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# Library-Tools
This project is a UiPath tools library.
## Language
C### Contents
1. File_ReadExcelToTable
1. File_ReadWorkbookToTable### File_ReadExcelToTable
This workflow reads a worksheet in a Microsoft Excel document by using the Excel activities and returns a data table.##### Arguments
1. String in_FilePath - The file path to the Microsoft Excel document.
2. String in_Worksheet - The worksheet name.
3. Boolean in_WorksheetHasHeaders - If the worrksheet has a header row.
4. String in_WorksheetRange
5. DataTable out_Dt_Data### File_ReadWorkbookToTable
| Type | Argument | Annotation |
| -------- | ------- | ------- |
| String | in_FilePath | The file path to the Microsoft Excel document. |
| String | in_Worksheet | The worksheet name. |
| Boolean | in_WorksheetHasHeaders | If the worrksheet has a header row. |
| String | in_WorksheetRange | The range of the worksheet. The entire sheet will be read if the worksheet range is blank.
| DataTable | out_Dt_Data | The data table containing the worksheet data.