TIM.Console
  • Quick start
  • User Interface
  • Log
  • Commands
    • PartType C#
    • CmdFormula C#
    • CmdInputResult C#
  • Support
Powered by GitBook
On this page
  1. Commands

CmdFormula C#

CmdFormula contains a list of CmdFormulaPart, and a type of space between them: or _

You can create new CmdFormula in your script like this:

CmdFormula formula = new CmdFormula()
{
    SpaceType = CmdSpaceType.Space,
    Parts = new List<CmdFormulaPart>()
    {
        new CmdFormulaPart("Download_image"),
        new CmdFormulaPart(CmdPartType.String, "URL")
    }
};

Just don't forget that you can't use your space symbol in Parts in Sentence and Enum variants

PreviousPartType C#NextCmdInputResult C#

Last updated 1 year ago