INearDuplicateManagerUpdateProperties Method |
Namespace: EdaIntegrationContract.NearDuplicate
void UpdateProperties()
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(); } }