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