LogoLogo
Home
  • 🏠Home
  • Open API Application
  • ReXgen API Documentation
    • ReXgen Open API
  • Data Conversion Library
    • RxLibrary.dll()
      • RxLib.XmlToRxc()
      • RxLib.ConvertData()
      • RxLib.ConvertStatus()
  • Device Library
    • RgUSBdrv.dll
      • DeviceIsReady()
      • GetFirmwareVersion()
      • SendConfiguration()
      • ReflashLogger()
      • InitLiveData()
      • StopLiveData()
      • GetDateTime()
      • SetDateTime()
      • GetLogCount()
      • FormatSDCard()
      • GetSDLogInfo()
      • GetLogData()
Powered by GitBook
On this page
Export as PDF
  1. Data Conversion Library
  2. RxLibrary.dll()

RxLib.ConvertData()

Converts RXD to MF4, ASC, BLF, MAT, CSV

C#

Bool ConvertData(string inputpath, string outputpath)

Parameters:

[in] Inputpath full Path of the RXD log file.

[out] outputpath full Path of the converted file (should include the output format extension).

C# Example:

private void btnConvertRXD_Click(object sender, EventArgs e)
        {
            if (dlgopenRXD.ShowDialog() != DialogResult.OK)
                return;
            if (dlgSaveConvertedData.ShowDialog() != DialogResult.OK)
                return;
            RxLib.ConvertData(dlgopenRXD.FileName, dlgSaveConvertedData.FileName);
        }
PreviousRxLib.XmlToRxc()NextRxLib.ConvertStatus()

Last updated 1 year ago