HtmlDiff Property (original) (raw)
Summary
Gets the HTML differrence.
Syntax
public string HtmlDiff { get; }
public:
property String^ HtmlDiff {
String^ get();
}
Property Value
An HTML string that represents the difference between two DICOM elements.
Example
This example compares two datasets with different patient IDs.
using Leadtools.Dicom.Common.Anonymization;
using Leadtools.Dicom;
using Leadtools.Dicom.Common.Compare;
public void CompareSample()
{
string dicomFileNameIn = Path.Combine(LEAD_VARS.ImagesDir, "DICOM","image3.dcm");
using (DicomDataSet dataset1 = new DicomDataSet())
{
dataset1.Load(dicomFileNameIn, DicomDataSetLoadFlags.None);
using (DicomDataSet dataset2 = new DicomDataSet())
{
List<Difference> differences = null;
dataset2.Copy(dataset2, null, null);
//
// Set a different value for patient id
//
dataset2.InsertElementAndSetValue(DicomTag.PatientID, "DifferentValue");
differences = dataset1.Compare(dataset2);
foreach (Difference difference in differences)
{
if (difference.IsChanged())
{
string info = string.Format("{0} has changed from {1} to {2}.", difference.Name, difference.FirstValue, difference.SecondValue);
Console.WriteLine(info);
Console.WriteLine("Html Diff");
Console.WriteLine("\t{0}", difference.HtmlDiff);
}
}
}
}
}
static class LEAD_VARS
{
public const string ImagesDir = @"C:\LEADTOOLS22\Resources\Images";
}
Leadtools.Dicom.Common Assembly