Adatta automaticamente le righe su una cartella di lavoro Excel Questo REST API indica di adattare automaticamente le righe su una cartella di lavoro Excel.
RSETAPI
Copy
POST http://api.aspose.cloud/v3.0/cells/{ name} /autofitrows
I parametri della richiesta sono:
Nome del parametro
Tipo
Percorso/Stringa di query/Corpo HTTP
Descrizione
nome
corda
sentiero
Nome del documento.
autoFitterOptions
corpo
Opzioni di installazione automatica.
startRow
numero intero
domanda
Inizia riga.
endRow
numero intero
domanda
Fine riga.
soloAuto
booleano
domanda
Falso
cartella
corda
domanda
Cartella del documento.
storageName
corda
domanda
nome dell’archivio.
ILSpecifiche OpenAPI definisce un’interfaccia di programmazione accessibile pubblicamente e consente di eseguire interazioni REST direttamente da un browser web.
È possibile utilizzare lo strumento da riga di comando cURL per accedere facilmente ai servizi Web Aspose.Cells. Nell’esempio seguente viene illustrato come effettuare chiamate al Cloud API con cURL.
Famiglia di SDK Cloud
Utilizzare un SDK è il modo migliore per accelerare lo sviluppo. Un SDK si prende cura dei dettagli di basso livello e ti consente di concentrarti sulle attività del tuo progetto. Si prega di controllare ilRepositorio GitHub per un elenco completo degli SDK Cloud Aspose.Cells.
I seguenti esempi di codice dimostrano come effettuare chiamate ai servizi Web Aspose.Cells utilizzando vari SDK:
C#
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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 PostAutofitWorkbookRows2Example()
{
CellsApi cellsApi = new CellsApi(Environment.GetEnvironmentVariable("CellsCloudTestClientId"), Environment.GetEnvironmentVariable("CellsCloudTestClientSecret"));
PostAutofitWorkbookRowsRequest request = new PostAutofitWorkbookRowsRequest
{
name = "Book1.xlsx",
startRow = 1,
endRow = 4,
onlyAuto = true,
folder = "TestData/In"
};
cellsApi.PostAutofitWorkbookRows(request);
}
}
}
Java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// For complete examples and data files, please go to https://github.com/aspose-cells-cloud/aspose-cells-cloud-java/
try {
CellsApi api = new CellsApi(System.getenv("CellsCloudTestClientId"),System.getenv("CellsCloudTestClientSecret"),"v3.0",System.getenv("CellsCloudTestApiBaseUrl"));
String remoteFolder = "TestData/";
String localName = "Book1.xlsx";
String remoteName = "Book1.xlsx";
GetWorkbookRequest request = new GetWorkbookRequest();
request.setName(remoteName);
request.setFormat("xps");
request.setPassword("");
request.setIsAutoFit(true);
request.setOnlySaveTable(true);
request.setOutPath("");
request.setOutStorageName("");
request.setCheckExcelRestriction(false);
request.setFolder(remoteFolder);
request.setStorageName("");
File response = api.getWorkbook(request);
}
catch (Exception e) {
e.printStackTrace();
}
PHP
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php
# For complete examples and data files, please go to https://github.com/aspose-cells-cloud/aspose-cells-cloud-php
require_once realpath(__DIR__ . '/..') . '/vendor/autoload.php';
use \Aspose\Cells\Cloud\Api\CellsApi;
use \Aspose\Cells\Cloud\PostAutofitWorkbookRowsRequest;
class Row {
public $instance;
public function __construct() {
$this->instance = new CellsApi(getenv("CellsCloudClientId"),getenv("CellsCloudClientSecret"),"v3.0",getenv("CellsCloudApiBaseUrl"));
}
public function postAutofitWorkbookRows() {
$remoteFolder = "TestData/In";
$localName = "Book1.xlsx";
$remoteName = "Book1.xlsx";
$request = new PostAutofitWorkbookRowsRequest();
$request->setName( $remoteName);
$request->setStartRow( 1);
$request->setEndRow( 100);
$request->setOnlyAuto( 'true');
$request->setFolder( $remoteFolder);
$request->setStorageName( "");
$this->instance->postAutofitWorkbookRows($request);
}
}
$row = new Row();
$row->postAutofitWorkbookRows();
?>
Ruby
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# For complete examples and data files, please go to https://github.com/aspose-cells-cloud/aspose-cells-cloud-ruby
require 'aspose_cells_cloud'
class Workbook
include AsposeCellsCloud
def initialize
#Get client_id and client_secret from https://cloud.aspose.com
@instance = AsposeCellsCloud::CellsApi.new($client_id,$client_secret,$api_version,$baseurl)
end
# Autofit workbook rows.
def autofit_workbook_rows
name = $BOOK1
auto_fitter_options = nil
start_row = 1
end_row = 100
only_auto = true
folder = $TEMPFOLDER
result = @instance.upload_file( folder+"/"+name, ::File.open(File.expand_path("data/"+name),"r") {|io| io.read(io.size) })
expect(result.uploaded.size).to be > 0
result = @instance.cells_workbook_post_autofit_workbook_rows(name, {:auto_fitter_options=>auto_fitter_options, :start_row=>start_row, :end_row=>end_row, :only_auto=>only_auto, :folder=>folder})
expect(result.code).to eql(200)
end
end
workbook = Workbook.new()
puts workbook.autofit_workbook_rows
Python
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# For complete examples and data files, please go to https://github.com/aspose-cells-cloud/aspose-cells-cloud-python
import os
from asposecellscloud.apis.cells_api import CellsApi
from asposecellscloud.requests import *
from asposecellscloud.models import *
api = CellsApi(os.getenv('CellsCloudClientId'),os.getenv('CellsCloudClientSecret'),"v3.0",os.getenv('CellsCloudApiBaseUrl'))
remote_name ='Book1.xlsx'
remote_folder = "PythonTest"
request = GetWorkbookRequest( remote_name,format= format,folder= remote_folder)
api.get_workbook(request)
Node.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const { CellsApi, UploadFileRequest, CellsWorkbook_PostAutofitWorkbookRowsRequest } = require("asposecellscloud");
const clientId = process.env.CellsCloudClientId;
const clientSecret = process.env.CellsCloudClientSecret;
const ApiURL = process.env.CellsCloudApiBaseUrl;
const fs = require('fs');
const path = require('path');
const cellsApi = new CellsApi(clientId, clientSecret,"v3.0",ApiURL);
const localPath = "D:/aspose-cells-cloud-node/TestData/"
const filename = "Book1.xlsx";
const data =fs.createReadStream(path.join(localPath, filename));
const req = new UploadFileRequest({
path: "Temp/" + filename,
file: data
});
cellsApi.uploadFile(req)
.then((result) => {
const req = new CellsWorkbook_PostAutofitWorkbookRowsRequest();
req.name = filename;
req.folder = "Temp";
req.autoFitterOptions = null;
req.startRow = 1;
req.endRow = 100;
req.onlyAuto = true;
cellsApi.cellsWorkbookPostAutofitWorkbookRows(req)
.then((result) => {
console.log("successful")
}).catch((error) => {
console.error('Unhandled Promise Rejection:', error);
})
})
Android
Swift
Perl
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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 $request = AsposeCellsCloud::Request::PostAutofitWorkbookRowsRequest->new();
$request->{name} = $remoteName;
$request->{start_row} = 1;
$request->{end_row} = 100;
$request->{only_auto} = 'true';
$request->{folder} = $remoteFolder;
$request->{storage_name} = '';
my $result = $api->post_autofit_workbook_rows(request=> $request);
Go