Recipes.Delete



Delete(strName As String) As Boolean

Parameters

strName As String
Name of the former created "Recipe" object as string.
ED
avaliable
RT
avaliable

Remarks

Deletes a "Recipe" object from the collection.

Sample


Sub DeleteRecipe()
	'Declarations
	Dim zRecipes As Recipes

	'Initialization of zRecipes with the recipes list of the current project
	Set zRecipes = thisProject.Recipes

	'Deletes the recipe with the name "zenOn_Recipe"
	zRecipes.Delete ("zenOn_Recipe")
End Sub



See Also

Recipes