Hi,
Can we use the number instead of a prédifined type in C#.
For exemple, to create a simple load case, can we use 1 for IRobotCaseNature.I_CN_EXPLOATATION, etc...?
So I don't want to write like this:
RobotSimpleCase SimpleCase = robApp.Project.Structure.Cases.CreateSimple(cNumber, cName, IRobotCaseNature.I_CN_EXPLOATATION, IRobotCaseAnalizeType.I_CAT_STATIC_LINEAR);
but Something like this (as VBA):
RobotSimpleCase SimpleCase = robApp.Project.Structure.Cases.CreateSimple(cNumber, cName, 1, 0);
Thansk for your helps.