IOcrPropertiesQueueForOcrDuringAnalysis Property |
Namespace: EdaIntegrationContract.OCR
using Law.EdaIntegration; using Law.EdaIntegration.Case; using Law.EdaIntegration.Ocr; class Sample { public static void Main() { EdaIntegration edaIntegration = EdaIntegration.ConnectToExplore(); Case edaCase = edaIntegration.Cases.OpenCaseByName("Case 1"); // Set the QueueForOcrDuringAnalysis value edaCase.OCR.Properties.QueueForOcrDuringAnalysis = true; // Save the changes to the case edaCase.OCR.UpdateProperties(); // Get the value Console.WriteLine("QueueForOcrDuringAnalysis: {0}", edaCase.OCR.Properties.QueueForOcrDuringAnalysis); } } /* This example produces the following results: QueueForOcrDuringAnalysis: True */