using Aspose.Cells.Cloud.SDK.Api;
using Aspose.Cells.Cloud.SDK.Model;
using Aspose.Cells.Cloud.SDK.Request;
using System;
using System.IO;
using System.Collections.Generic;

CellsApi cellsApi = new CellsApi(Environment.GetEnvironmentVariable("CellsCloudTestClientId"), Environment.GetEnvironmentVariable("CellsCloudTestClientSecret"));
string remoteFolder = "TestData/In";

string localName = "Book1.xlsx";
string remoteName = "Book1.xlsx";



var request = new PostUnhideWorksheetColumnsRequest(
    name: remoteName,
    sheetName: "Sheet1",
    startColumn: 1,
    totalColumns: 10,
    width: 10.9f,
    folder: remoteFolder,
    storageName: ""
);
cellsApi.PostUnhideWorksheetColumns(request);