Sunday, 17 March 2019

Delete SPList using pnp



private DeleteSPList():void
{
pnp.sp.web.lists.getByTitle("Employee").delete().then(function(response)
{
console.log("SharePoint List Deleted");
}).catch(function(exception)
{
alert("Something went wrong :"+exception);
});
}

No comments:

Post a Comment