Property VarString
VarString
The character string listing all the production variables of the object.
Declaration
public string VarString { get; }
Property Value
Type | Description |
---|---|
string |
Remarks
This function reads the character string listing all the production variables of the object.
The production variables of an object come from the catalog. They are declared in the block script while editing the catalog in MobiScript using the "@VarString" keyword.
Here is a block script extract that illustrates the
declaration of production variables:
@VarString("CadFile:=Manufacturing\A.alk|C55:=20")
On this example, you can see that two production variables are
declared: CadFile and C55.
The content of an object @VarString section is taken into account by the KitchenDraw software when generating the XML file dedicated to the iMos production software.
This property could be used for example in a plugin running at the manufacturer and that would analyse the scenes received from the points of sales for production preparation.
Use VarStringItems property to manipulate individual production variables of the object. It supports modification and creation of variables along with reading.