How to get Excel Worksheet Page count in Flutter?

Hello. How i can get total pages number of xls file from flutter?

@ivanov.ap84,

Please reference Aspose.Cells Cloud - API References and following codes:

instance = new CellsApi(clientId, clientSecret);
var response = instance.CellsWorkbookGetPageCount(“Book1.xlsx”, “Temp”);
Assert.IsInstanceOf(response, “response is WorkbookResponse”);
Assert.Greater((long)response ,0);
}

Thank you. But What is CellsApi(clientId, clientSecret)?
You do not have Fluter SDK for cells. How i can get this object?

or can you write full code for node js? how i can send file and get page number. Please, please, please.
for cels and word.
Thank you.

@ivanov.ap84,

Please refer to following codes:

describe(‘CellsWorkbook_GetPageCountRequest’, function () {

it(‘should call CellsWorkbook_GetPageCountRequest successfully’, function () {

const cellsApi = new api.CellsApi("clientId", "clientSecret","v3.0","https://api.aspose.cloud");

const filename = "Book1.xlsx";

var data = fs.createReadStream(localPath + filename);

var req = new model.UploadFileRequest();

req.path = "Temp/" + filename;

req.file = data;

return cellsApi.uploadFile(req)

  .then((result) => {

    expect(result.body.uploaded.length).greaterThan(0);

    const filename = "Book1.xlsx";

    var req = new model.CellsWorkbook_GetPageCountRequest();

    req.folder = "Temp";

    req.name = filename;

    return cellsApi.cellsWorkbookGetPageCount(req)

      .then((result) => {

        expect(result.body).to.greaterThan(0);

      });

  });

});

});

Hi. Where i can get api.CellsApi and model.UploadFileRequest?

@hopheylalaley,

Please access Aspose.Cells Cloud SDK for Node .