enum Ansys.ACT.Automation.Mechanical.FECommandsType
{
Processed,
UnProcessed,
All = Processed | UnProcessed
};
ICommand
{
string Name ();
uint Index ();
};
ICommandColl
{
uint Count ();
ICommand Item (uint lNum);
};
ICommandRepository
{
ICommandColl GetCommandsByName (string name);
ICommand GetCommandByIndex (int index);
int GetCommandNamesCount (FECommandsType eCommandsType);
string GetCommandName (FECommandsType eCommandsType, int index);
};