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")
}
};Last updated