Skip to content

Latest commit

 

History

History
19 lines (13 loc) · 628 Bytes

File metadata and controls

19 lines (13 loc) · 628 Bytes
description Automatically generated file. DO NOT MODIFY
// Code snippets are only available for the latest version. Current version is 6.x

GraphServiceClient graphClient = new GraphServiceClient(requestAdapter);

WorkbookTable workbookTable = new WorkbookTable();
workbookTable.setName("name-value");
workbookTable.setShowHeaders(true);
workbookTable.setShowTotals(true);
workbookTable.setStyle("style-value");
WorkbookTable result = graphClient.drives().byDriveId("{drive-id}").items().byDriveItemId("{driveItem-id}").workbook().tables().byWorkbookTableId("{workbookTable-id}").patch(workbookTable);