renameRecipeTypeFolderEx
[ Function ]
public static renameRecipeTypeFolderEx (
recipeTypeFolderName: string,
path: string | null,
newName: string,
newPath: string | null,
options?: TcHmi.Server.RecipeManagement.IRecipeOptions | null,
requestOptions: TcHmi.Server.IRequestOptions | null = null,
callback: null | ((this: void, data: TcHmi.IResultObject) => void) = null
): TcHmi.IErrorDetails;
Renames a recipe type folder.
Parameter
Name | Type | Description |
---|---|---|
recipeTypeFolderName | Name of the recipe type folder. 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 system searches for the recipe type in the main folder. | |
newName | New name of the recipe type. The name may include the full path. In this case, '::' must be used as the separator for folders. | |
newPath | Path of the new destination folder. If this is not specified, the recipe type is created in the main folder. | |
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.1336.60 |
Sample - JavaScript
TcHmi.Server.RecipeManagement.renameRecipeTypeFolderEx (
'recipeTypeFolder10',
'testRecipeCategory',
'rootRecipeTypeFolder11', // new name
null, // new path not give so the recipe type folder is moved to root folder
null,
{timeout: 2000},
function(data) {
if (data.error === TcHmi.Errors.NONE) {
// Success
} else {
// Error
}
}
);