{"id":15782062,"url":"https://github.com/mocanet/mocaoffice","last_synced_at":"2026-04-27T21:31:14.827Z","repository":{"id":142582217,"uuid":"47060822","full_name":"mocanet/MocaOffice","owner":"mocanet","description":"Moca.NET Office Library","archived":false,"fork":false,"pushed_at":"2022-01-16T14:08:28.000Z","size":4255,"stargazers_count":0,"open_issues_count":1,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2024-10-11T19:26:50.874Z","etag":null,"topics":["dotnet","excel","moca","nuget"],"latest_commit_sha":null,"homepage":"","language":"Visual Basic .NET","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"ms-pl","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/mocanet.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2015-11-29T11:28:31.000Z","updated_at":"2022-01-16T13:59:16.000Z","dependencies_parsed_at":null,"dependency_job_id":"c0c282b2-6ddc-4571-ac16-1a1b75c28226","html_url":"https://github.com/mocanet/MocaOffice","commit_stats":{"total_commits":18,"total_committers":3,"mean_commits":6.0,"dds":0.4444444444444444,"last_synced_commit":"02f5e1dd9dacfc0ded54e87c583997edad173384"},"previous_names":[],"tags_count":4,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mocanet%2FMocaOffice","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mocanet%2FMocaOffice/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mocanet%2FMocaOffice/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mocanet%2FMocaOffice/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mocanet","download_url":"https://codeload.github.com/mocanet/MocaOffice/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":246498822,"owners_count":20787396,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["dotnet","excel","moca","nuget"],"created_at":"2024-10-04T19:02:57.819Z","updated_at":"2026-04-27T21:31:14.785Z","avatar_url":"https://github.com/mocanet.png","language":"Visual Basic .NET","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Moca.NET Office\n\n[![NuGet](https://img.shields.io/nuget/v/Moca.NETOffice.svg)](https://www.nuget.org/packages/Moca.NETOffice/)\n[![NuGet Pre Release](https://img.shields.io/nuget/vpre/Moca.NETOffice.svg)](https://www.nuget.org/packages/Moca.NETOffice/)\n[![NuGet](https://img.shields.io/nuget/dt/Moca.NETOffice.svg)](https://www.nuget.org/packages/Moca.NETOffice/)\n[![license](https://img.shields.io/badge/License-MS--PL-blue.svg)](https://opensource.org/licenses/MS-PL)\n\n## Overview\nWrapper library of Excel. without the memory release of the Excel object.  \nReferences of excel library is not required.  \nwe do not have wrapping all of the functions.\n\n## Support for multiple frameworks\n### Microsoft .NET Framework\n* 2.0\n* 3.5\n* 4.0\n* 4.5\n* 4.5.2\n* 4.6\n* 4.6.2\n* 4.7\n* 4.7.2\n* 4.8\n\n## How to get\n\nURL:https://www.nuget.org/packages/Moca.NETOffice/\n```\nPM\u003e Install-Package Moca.NETOffice\n```\n\n## Programming\n\n```vb\nUsing xlsx As ExcelWrapper = New ExcelWrapper()\n    Dim book As BookWrapper\n    book = xlsx.Workbooks.Open(Path.Combine(My.Application.Info.DirectoryPath, \"Book1.xlsx\"))\n\n    book.ActiveSheet.Range(\"9:9\").Copy()\n    book.ActiveSheet.Range(\"10:10\").Insert()\n\n    book.ActiveSheet.Cells(10, 2).Value = 5\n    book.ActiveSheet.Cells(10, 3).Value = 14\n    book.ActiveSheet.Cells(10, 4).Value = 24\n    book.ActiveSheet.Cells(10, 5).Value = 34\n    book.ActiveSheet.Cells(10, 6).Value = 44\n\n    book.ExportAsFixedFormat(FixedFormatType.XPS, \"C:\\Temp\\Test.xps\")\n    book.ExportAsFixedFormat(FixedFormatType.PDF, \"C:\\Temp\\Test.pdf\", , , , , , True)\n\n    book.Saved = True\n    xlsx.DisplayAlerts = False\nEnd Using\n```\n\n\n## Other Libraries\n\n[Moca.NET Organization](https://github.com/mocanet)\n\n## Visual Studio Extensions\n\n* [Moca.NET Template Extension](https://marketplace.visualstudio.com/items?itemName=MiYABiS.MocaNETTemplate30)\n* [Moca.NET Snippets Extension](https://marketplace.visualstudio.com/items?itemName=MiYABiS.MocaNETCodeSnippet)\n\n## Sample\n\n* Web Form Application  \n  * http://miyabis.github.io/Moca.NET-WebAppDemo/  \n  * https://code.msdn.microsoft.com/vstudio/MocaNET-Framework-Web-0e8d6dd7\n\n* Windows Form Application  \n  * http://miyabis.github.io/Moca.NET-WinAppDemo/  \n  * https://code.msdn.microsoft.com/vstudio/MocaNET-Framework-Windows-7174d250\n\n## For Development\n\n* Visual Studio 2019\n\n## License\n\nMicrosoft Public License (MS-PL)\n\nhttp://opensource.org/licenses/MS-PL\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmocanet%2Fmocaoffice","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmocanet%2Fmocaoffice","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmocanet%2Fmocaoffice/lists"}