IndexPropertiesIndexedFields Property |
Namespace: Law.EdaIntegration.Indexing
using Law.EdaIntegration; 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"); IndexedFields idxFields = edaCase.Index.Properties.IndexedFields; idxFields.IsCompound = false; idxFields.IsCompoundChild = false; idxFields.Languages = false; // Save the changes to the case edaCase.Index.Properties.IndexedFields = idxFields; edaCase.Index.UpdateProperties(); } }