Click or drag to resize

INearDuplicateManagerUpdateProperties Method

Saves the INearDuplicateProperties to the case.

Namespace:  EdaIntegrationContract.NearDuplicate
Assembly:  EdaIntegration.Contract (in EdaIntegration.Contract.dll) Version: 7.6
Syntax
C#
void UpdateProperties()
Remarks
Modifications to the properties are not saved to the case until UpdateProperties is called.
Examples
The following example demonstrates updating the Near Duplicate properties for a case.
C#
using Law.EdaIntegration;
using Law.EdaIntegration.Case;
using Law.EdaIntegration.NearDuplicate;

class Sample
{
    static void Main()
    {
        EdaIntegration edaIntegration = EdaIntegration.ConnectToExplore();
        Case edaCase = edaIntegration.Cases.ByName("Case 1");

        // Set the NearDupeComparisonThreshold value
        edaCase.NearDuplicates.Properties.NearDupeComparisonThreshold = 85;

        // Save the changes to the case
        edaCase.NearDuplicates.UpdateProperties();
    }
}
See Also