.NET解析するライブラリFinanceドキュメント
ビジネスプロセス管理、財務分析、およびレポート作成ソフトウェア内でXBRLおよびiXBRL Finance関連のフォーマットを作成、読み取り、検証します。
ダウンロード无料トライアルAspose.Finance for .NETは、財務関連のフォーマット処理用の柔軟なライブラリです。 APIは、eXtensible Business Reporting Language XBRLおよびiXBRL形式を簡単に作成、読み取り、検証できるだけでなく、さまざまな形式のOFX要求および応答ファイルを作成できます。開発者は、XBRL対応のソフトウェアを簡単に開発したり、既存のデジタル財務報告システム内で使用してXBRLでレポートを作成したりできます。これは、他のソフトウェアから独立した、拡張可能で使いやすく、スタンドアロンのAPIです。
高度な.NETFinance解析API機能
XBRLインスタンスを最初から作成する
XBRLおよびiXBRLフォーマットを読む
XBRLとiXBRLを検証します
XBRLをiXBRLに変換
XBRLをXLSXに変換する
OFXリクエストファイルを作成
OFX応答ファイルを作成する
OFXリクエストファイルを1.03から2.2形式に変換します
OFX応答ファイルを1.03から2.2形式に変換します
XBRLインスタンスドキュメントを作成する
Aspose.Financefor .NETはXBRLドキュメントの生成をサポートしています。次の数行のコードで、新しいXBRLインスタンスドキュメントを作成します
XBRLインスタンスを作成-C#
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
XbrlDocument doc = new XbrlDocument(); | |
XbrlInstanceCollection xbrlInstances = doc.XbrlInstances; | |
XbrlInstance xbrlInstance = xbrlInstances[xbrlInstances.Add()]; | |
doc.Save(XbrlFilePath + @"output\document1.xbrl"); |
iXBRLファイルを読む
Inline eXtensible Business ReportingLanguageiXBRLインスタンスドキュメントの読み取りもサポートされています。
iXBRLインスタンスドキュメントを読む-C#
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
InlineXbrlDocument fle = new InlineXbrlDocument(XbrlFilePath + @"account_1.html"); | |
List inlineFacts = fle.Facts; | |
List contexts = fle.Contexts; | |
List units = fle.Units; |