// For complete examples and data files, please go to https://github.com/aspose-cells-cloud/aspose-cells-cloud-dotnet/
namespace Aspose.Cells.Cloud.SDK.Example
{
    using Aspose.Cells.Cloud.SDK.Api;
    using Aspose.Cells.Cloud.SDK.Request;
    using System;

    public partial class CellsApiExample
    {
        public void GetWorksheetShape1Example()
        {
            CellsApi cellsApi = new CellsApi(Environment.GetEnvironmentVariable("CellsCloudTestClientId"), Environment.GetEnvironmentVariable("CellsCloudTestClientSecret"));
            GetWorksheetShapesRequest request = new GetWorksheetShapesRequest { name = "Book1.xlsx", sheetName = "Sheet1", folder = "TestData/In" };
            cellsApi.GetWorksheetShapes(request);
        }
    }
}