XBRL'i C#'de iXBRL'e dönüştür

Contents
[ ]

Aspose.Finance, XBRL dosyalarının bir örneğini geçirerek IXBRL’ye dönüştürmeyi destekler.Seçenekleri Kaydet sınıfaXbrlDocument.Kaydet yöntem. Belgeyi IXBRL biçiminde kaydetmek için,SaveOptions.SaveFormat ileSaveFormat.IXBRL.

Aşağıdaki C# kod parçacığı, XBRL’in IXBRL formatına nasıl dönüştürüldüğünü gösterir.

// For complete examples and data files, please go to https://github.com/aspose-finance/Aspose.Finance-for-.NET
// Working directories
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.IXBRL;
// Save file to XLSX format
document.Save(outputDir + @"ConvertXbrlToIXbrl_out.ixbrl", saveOptions);