ResultReadabilityOptions ChangeGatheringEnabled Property XML Compare .NET API Documentation
XML Compare .NET API Documentation - DEPRECATED
Sets whether to change the order of consecutive changed items to improve readability.

Namespace: DeltaXML.CoreS9Api.Config
Assembly: DeltaXML.CoreS9Api (in DeltaXML.CoreS9Api.dll) Version: 10.4.0.1000 (10.4.0.1000)
Syntax

public bool ChangeGatheringEnabled { get; set; }

Property Value

Type: Boolean
Remarks

Sets whether to change the order of consecutive changed items to improve readability.

If the result contains a sequence of elements whose deltaxml:deltaV2 attribute values are mixed up in a sequence of As and Bs, enabling this feature will cause them to be reordered so that they are not mixed.

For example,

              <elem deltaxml:deltaV2="A"/>
              <elem deltaxml:deltaV2="B"/>
              <elem deltaxml:deltaV2="A"/>
              <elem deltaxml:deltaV2="B"/>
              <elem deltaxml:deltaV2="B"/>
              <elem deltaxml:deltaV2="A"/>
              <elem deltaxml:deltaV2="A"/>
            
would be reordered to
              <elem deltaxml:deltaV2="A"/>
              <elem deltaxml:deltaV2="A"/>
              <elem deltaxml:deltaV2="A"/>
              <elem deltaxml:deltaV2="A"/> 
              <elem deltaxml:deltaV2="B"/>
              <elem deltaxml:deltaV2="B"/>
              <elem deltaxml:deltaV2="B"/>
            

See Also