# For complete examples and data files, please go to https://github.com/aspose-cells-cloud/aspose-cells-cloud-perl/ use strict; use warnings; use utf8; use File::Slurp; use MIME::Base64; use AsposeCellsCloud::CellsApi; my $config = AsposeCellsCloud::Configuration->new( client_id => $ENV{'ProductClientId'}, client_secret => $ENV{'ProductClientSecret'}); my $instance = AsposeCellsCloud::CellsApi->new(AsposeCellsCloud::ApiClient->new( $config)); my $remoteFolder = 'TestData/In'; my $remoteName = 'Book1.xlsx'; my $sheet = AsposeCellsCloud::Object::Worksheet->new(); $sheet->{name} = 'sheet65' ; $sheet->{is_gridlines_visible} = 'true' ; my $request = AsposeCellsCloud::Request::PostUpdateWorksheetPropertyRequest->new(); $request->{name} = $remoteName; $request->{sheet_name} = 'Sheet5'; $request->{sheet} = $sheet; $request->{folder} = $remoteFolder; $request->{storage_name} = ''; my $result = $api->post_update_worksheet_property(request=> $request);