Skip to content

Instantly share code, notes, and snippets.

@chrisobriensp
Created March 13, 2017 14:52
Show Gist options
  • Save chrisobriensp/0269a57dc9c0a6a9c5123dda3e049caf to your computer and use it in GitHub Desktop.
Save chrisobriensp/0269a57dc9c0a6a9c5123dda3e049caf to your computer and use it in GitHub Desktop.
Shows the simplest example of adding a modern web part to a SharePoint page.
private static void addDefaultWebPartToPageSimple(ClientContext siteContext, string pageName)
{
ClientSidePage page = new ClientSidePage(siteContext);
ClientSideWebPart videoEmbedWp = page.InstantiateDefaultWebPart(DefaultClientSideWebParts.VideoEmbed);
page.AddControl(videoEmbedWp);
page.Save(pageName);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment