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);
        }

Last updated