Product Page | Docs | Demos | API Reference | Examples | Blog | Search | Free Support | Temporary License
Aspose.Finance for .NET is a standalone on-premise API consisting of C# classes that allow you to process and manipulate finance-related formats, such as, XBRL and iXBRL from within your .NET applications.
Finance Processing Features
- Create XBRL instance from scratch.
- Read XBRL & iXBRL format.
- Supports XBRL & iXBRL validation.
- Import and export XBRL & iXBRL format files.
- Handle the abstract element in XBRL taxonomy.
XBRL
iXBRL
Aspose.Finance for .NET is implemented using Managed C# and can be used with any .NET language like C#, VB.NET, F#, and so on. It can be integrated with any kind of .NET application, from ASP.NET web applications to Windows .NET applications.
Get Started
Are you ready to give Aspose.Finance for .NET a try? Simply execute Install-Package Aspose.Finance
from Package Manager Console in Visual Studio to fetch the NuGet package. If you already have Aspose.Finance for .NET and want to upgrade the version, please execute Update-Package Aspose.Finance
to get the latest version.
Convert XBRL
to XLSX
using C# Code
string sourceDir = RunExamples.Get_SourceDirectory();
string outputDir = RunExamples.Get_OutputDirectory();
XbrlDocument document = new XbrlDocument(sourceDir + @"IdScopeContextPeriodStartAfterEnd.xml");
// Set save options
SaveOptions saveOptions = new SaveOptions();
saveOptions.SaveFormat = SaveFormat.XLSX;
// Save file to XLSX format
document.Save(outputDir + @"ConvertXbrlToXlsx_out.xlsx", saveOptions)
Product Page | Docs | Demos | API Reference | Examples | Blog | Search | Free Support | Temporary License