OcrManagerUpdateProperties Method |
Namespace: Law.EdaIntegration.Ocr
public void UpdateProperties()
using Law.EdaIntegration; using Law.EdaIntegration.Case; using Law.EdaIntegration.Ocr; class Sample { public static void Main() { string connectionString = @"Data Source=localhost;Initial Catalog=EDA_Management;Integrated Security=False;User ID=myUserId;Password=myPassword"; EdaIntegration edaIntegration = new EdaIntegration(); edaIntegration.InitializeEnvironment(connectionString); Case edaCase = edaIntegration.Cases.OpenCaseByName("Case 1"); // Set the MaxOcrAgents value edaCase.OCR.Properties.MaxOcrAgents = 4; // Save the changes to the case edaCase.OCR.UpdateProperties(); } }