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

Last updated