createRecipeEx
[ Function ]
public static createRecipeEx (
recipeName: string,
path: string | null,
recipe: TcHmi.Server.RecipeManagement.Recipe,
options?: TcHmi.Server.RecipeManagement.IRecipeOptions | null,
requestOptions: TcHmi.Server.IRequestOptions | null = null,
callback: null | ((this: void, data: TcHmi.IResultObject) => void) = null
): TcHmi.IErrorDetails;
Creates a new recipe.
Parameter
Name | Type | Description |
---|---|---|
recipeName | Name of the recipe. The name may include the full path. In this case, '::' must be used as the separator for folders. | |
path | Path of the destination folder. If this is not specified, the recipe is created in the main folder. | |
recipe | Recipe definition | |
options | Recipe management options | |
requestOptions | Server request options | |
callback [ optional ] | (data: TcHmi.IResultObject) => void, null | Asynchronous callback function that is triggered once the action is completed. |
Return value
Type | Description |
---|---|
Returns confirmation as to whether the operation was successfully sent. |
Available from version 1.10.1171.142 |
Sample - JavaScript
let recipe = {
'recipeTypeName': 'cookieRecipeType',
'values': {
'PLC1.MAIN.sugar': 8
}
};
TcHmi.Server.RecipeManagement.createRecipeEx(
'recipe10',
'testRecipeCategory',
recipe,
null,
{timeout: 2000},
function(data) {
if (data.error === TcHmi.Errors.NONE) {
// Success
} else {
// Error
}
}
);
// or the same:
TcHmi.Server.RecipeManagement.createRecipeEx(
'testRecipeCategory::recipe10',
null, // or ''
recipe,
null,
{timeout: 2000},
function(data) {
if (data.error === TcHmi.Errors.NONE) {
// Success
} else {
// Error
}
}
);