deleteRecipeType

[ Function ]

public static deleteRecipeType (
    recipeTypeName: string,
    path: string | null,
    callback: null | ((this: void, data: TcHmi.IResultObject) => void) = null
): TcHmi.IErrorDetails;

Deletes a recipe type.

Parameter

Name

Type

Description

recipeTypeName

string

Name of the recipe type. The name may include the full path. In this case, '::' must be used as the separator for folders.

path

string, null

Path of the destination folder.

callback [ optional ]

(data: TcHmi.IResultObject) => void, null

Asynchronous callback function that is triggered once the action is completed.

Return value

Type

Description

TcHmi.IErrorDetails

Returns confirmation as to whether the operation was successfully sent.

deleteRecipeType 1:

Available from version 1.10.1171.142

Sample - JavaScript

TcHmi.Server.RecipeManagement.deleteRecipeType (
    'recipeType10',
    'testRecipeCategory',
    function(data) {
        if (data.error === TcHmi.Errors.NONE) {
            // Success
        } else {
            // Error
        }
    }
);