{"id":25170078,"url":"https://github.com/codaxy/xlio","last_synced_at":"2026-03-27T02:12:36.092Z","repository":{"id":61715121,"uuid":"2162151","full_name":"codaxy/xlio","owner":"codaxy","description":"Excel IO Library","archived":false,"fork":false,"pushed_at":"2022-10-20T07:49:22.000Z","size":2596,"stargazers_count":15,"open_issues_count":0,"forks_count":16,"subscribers_count":6,"default_branch":"master","last_synced_at":"2025-04-30T22:55:41.601Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"C#","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/codaxy.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2011-08-05T19:20:42.000Z","updated_at":"2023-10-12T16:32:07.000Z","dependencies_parsed_at":"2023-01-20T15:31:26.198Z","dependency_job_id":null,"html_url":"https://github.com/codaxy/xlio","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codaxy%2Fxlio","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codaxy%2Fxlio/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codaxy%2Fxlio/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codaxy%2Fxlio/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/codaxy","download_url":"https://codeload.github.com/codaxy/xlio/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":252547347,"owners_count":21765972,"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":[],"created_at":"2025-02-09T08:38:22.905Z","updated_at":"2026-03-27T02:12:31.055Z","avatar_url":"https://github.com/codaxy.png","language":"C#","funding_links":[],"categories":[],"sub_categories":[],"readme":"XLIO\n----\nXlio is a small C# library designed for reading and writing Excel files (.xlsx only).\nIt provides an elegant class system which feels natural for the developers.\nIt's very fast and has no external dependencies.\n\nCheck the following example to see how typical Xlio code looks like.\n\n\tvar workbook = Workbook.ReadFile(@\"C:\\Work\\Test.xlsx\");\n\tvar sheet = workbook.Sheets[0];\n\tsheet[\"A1\"].Value = \"Hello\";\n\tsheet[\"A1\"].Style.Fill = new CellFill\n\t{\n\t\tForeground = new Color(255, 255, 0, 0),\n\t\tPattern = FillPattern.Solid\n\t};\n\tsheet[0, 1].Value = \"World\";\n\tsheet[\"A3\"].Value = \"This is a merged cell with border.\";\n\tsheet[\"A3\"].Style.Alignment.WrapText = true;\n\tsheet[\"A3\", \"B5\"].Merge();\n\tsheet[\"A3\", \"B5\"].SetOutsideBorder(new BorderEdge\n\t{\n\t\tStyle = BorderStyle.Thick,\n\t\tColor = Color.Black\n\t});\n\n\tsheet[\"A6\"].Value = \"Formatted:\";\n\tvar b6 = sheet[\"B6\"];\n\tb6.Value = 5;\n\tb6.Style.Format = \"#,#.00\";\n\n\tfor (var c = 0; c \u003c 5; c++)\n\t{\n\t\tvar bgColor = new Color((byte)(100 + c * 30), 255, (byte)(100 + c * 30));\n\t\tfor (var r = 0; r \u003c 50; r++)\n\t\t\tsheet[r, c].Style.Fill = CellFill.Solid(bgColor);\n\t}\n\n\tworkbook.Save(@\"C:\\Work\\Xlio.xlsx\", XlsxFileWriterOptions.AutoFit);\n\t\nMore information available at the official [Xlio page](http://dox.codaxy.com/xlio/).","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcodaxy%2Fxlio","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcodaxy%2Fxlio","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcodaxy%2Fxlio/lists"}