Skip to content

aspose-finance/Aspose.Finance-for-.NET

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

18 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Nuget Nuget

.NET API to Manipulate Finance-related Formats

Aspose.Finance for .NET is a standalone on-premise API consisting of C# classes that allow you to process and manipuate finance-related formats, such as, XBRL and iXBRL from within your .NET applications.

Directory Description
CSharp A collection of .NET examples that help you learn the product features
Data Data files used in the examples

Finance File Processing via .NET

  • 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.

Read Finance Formats

XBRL, iXBRL

Platform Independence

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.

Getting Started with Aspose.Finance for .NET

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.

Add Role Reference to XBRL Document

XbrlDocument document = new XbrlDocument();
XbrlInstanceCollection xbrlInstances = document.XbrlInstances;
XbrlInstance xbrlInstance = xbrlInstances[xbrlInstances.Add()];
SchemaRefCollection schemaRefs = xbrlInstance.SchemaRefs;
schemaRefs.Add(XbrlFilePath + @"schema.xsd", "example", "http://example.com/xbrl/taxonomy");
SchemaRef schema = schemaRefs[0];
RoleType roleType = schema.GetRoleTypeByURI("http://abc.com/role/link1");
if (roleType != null)
{
    RoleReference roleReference = new RoleReference(roleType);
    xbrlInstance.RoleReferences.Add(roleReference);
}
document.Save(XbrlFilePath + "output.xbrl");

Home | Product Page | Docs | API Reference | Examples | Blog | Search | Free Support | Temporary License

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 6