I found this, but it's not a full documentation list of the classes, functions, etc. available. For instance I was trying to find out what the different parameters for SupportedDexPlatforms appled to but I was unable to locate any information about DexPlatforms.Service.
[SupportedDexPlatforms(DexPlatforms.Service)]
Is there a full documentation list available?
EDIT
Another example: I am trying to find out how to access the register an event handler with the SaveRecord event of the Item Class Setup window. I know that the Item Maintenance window SaveRecord event can be accessed with the following.
Dynamics.Forms.IvItemMaintenance.IvItemMaintenance.SaveRecord.ValidateAfterOriginal += new EventHandler(DoSomething);
Using the same logic, it should exist as...
Dynamics.Forms.IvItemClassSetup.IvItemClassSetup.SaveRecord.ValidateAfterOriginal += new EventHandler(DoSomethingElse);
*This post is locked for comments