IOcrManagerUpdateProperties Method |
Namespace: EdaIntegrationContract.OCR
void UpdateProperties()
using EdaIntegrationContract; using EdaIntegrationContract.Case; using EdaIntegrationContract.OCR; class Sample { public static void Main() { var edaIntegration = new EdaIntegration().ConnectToExplore(); ICase edaCase = edaIntegration.Cases.OpenCaseByName("Case 1"); // Set the MaxOcrAgents value edaCase.OCR.Properties.MaxOcrAgents = 4; // Save the changes to the case edaCase.OCR.UpdateProperties(); } }