Skip to content

v1.2.0

Compare
Choose a tag to compare
@jordanrobot jordanrobot released this 15 Aug 06:08
· 64 commits to master since this release
  • Added a new ExternalRuleDirectories object to simplify manipulation of the iLogic Addin's External Rule Directories.

C#:

ExternalRuleDirectories foo = new ExternalRuleDirectories();
foo.Add(@"C:\New Directory\");
foo.Remove(@"C:\Another Directory\")
int i = foo.Count;

List<string> myCopy = foo.Directories;
foo.Clear();

Please refer to the API documentation here for more info.

Find the nuget page here.