Ideas for Moxie

Please share with us your ideas for usability, features, and capabilities of Moxie!

Support re-usable script elements.

Implement some method to re-use ironpython functions, rather than copy/paste into many scripts. Ie, allow import of user code. c/c++ style #include, etc.

  • George Hannah
  • Mar 17 2020
  • Attach files
  • Admin
    Craig Marshall commented
    March 18, 2020 22:02

    Thank you for the suggestion. This is something we have discussed doing, through a few different approaches, but other items took precedence. It is currently possible to include C# Framework and use the objects within.

    For example if you want to use the C# DateTime objects

    from System import DateTime, Exception, String

    mySheet [cell.Col, cell.Row].Value = DateTime.Now.ToString(dateTimeFormat)

    As you can see we are using C# here DateTime.Now.ToString()