Aspose.Finance for .NET は、財務諸表形式のファイルを処理できる柔軟なライブラリです。Aspose.Finance for .NET の API は、eXtensible Business Reporting Language (XBRL や iXBRL) 形式のファイルを容易に生成、読み込み、検証できるだけでなく、さまざまな形式の OFX リクエスト、レスポンス ファイルも生成できます。XBRL に対応したソフトウェアを簡単に開発したり、既存の電子財務報告書システム内で XBRL のレポートを生成できる機能を追加したりできます。Aspose.Finance for .NET は、拡張性が高く使用も簡単で、他のソフトウェアから独立したスタンドアロンの API です。
Aspose.Finance for .NET は、XBRL 文書の生成をサポートしています。次のわずか数行のコードで新規の XBRL インスタンス文書を生成できます。
XbrlDocument doc = new XbrlDocument(); XbrlInstanceCollection xbrlInstances = doc.XbrlInstances; XbrlInstance xbrlInstance = xbrlInstances[xbrlInstances.Add()]; doc.Save(XbrlFilePath + @"output\document1.xbrl");
Inline eXtensible Business Reporting Language (iXBRL) インスタンス文書の読み込みもサポートされています。
InlineXbrlDocument fle = new InlineXbrlDocument(XbrlFilePath + @"account_1.html"); List inlineFacts = fle.Facts; List contexts = fle.Contexts; List units = fle.Units;