Aspose.Cells Cloud 17.3 发行说明
此页面包含发行说明Aspose.Cells 云 17.3.
钥匙 | 概括 | 类别 |
---|---|---|
CELLSCLOUD-10028 | 在 Excel 工作表中插入分页符 | 新功能 |
CELLSCLOUD-10035 | 支持自动调整行高 | 新功能 |
CELLSCLOUD-10036 | 支持自动调整列宽 | 新功能 |
在工作表中获取水平分页符
以下示例代码说明了如何使用 Aspose.Cells for Cloud API 在工作表中获取水平分页符。
//Your workbook and sheet name
string workbookName = "sampleExcelPageBreaks.xlsx";
string sheetName = "Sheet1";
//URL to Get Horizontal Page Breaks
string url = "http://api.aspose.com/v1.1/cells/"+ workbookName + "/worksheets/" + sheetName + "/horizontalpagebreaks";
//Call Get method with the following parameters
string data = "";
string contentType = "application/json";
using (HttpWebResponse response = _helper.CallGet(url, data, contentType))
{
Assert.AreEqual(response.StatusCode, HttpStatusCode.OK);
}
在工作表中获取垂直分页符
以下示例代码说明了如何使用 Aspose.Cells for Cloud API 在工作表中获取垂直分页符。
//Your workbook and sheet name
string workbookName = "sampleExcelPageBreaks.xlsx";
string sheetName = "Sheet1";
//URL to Get Horizontal Page Breaks
string url = "http://api.aspose.com/v1.1/cells/"+ workbookName + "/worksheets/" + sheetName + "/verticalpagebreaks";
//Call Get method with the following parameters
string data = "";
string contentType = "application/json";
using (HttpWebResponse response = _helper.CallGet(url, data, contentType))
{
Assert.AreEqual(response.StatusCode, HttpStatusCode.OK);
}
在工作表中插入水平分页符
以下示例代码说明了如何使用 Aspose.Cells for Cloud API 在工作表中插入水平分页符。
//Your workbook and sheet name
string workbookName = "sampleExcelPageBreaks.xlsx";
string sheetName = "Sheet1";
//Row index to insert horizontal page break
int idxRow = 18;
//URL to insert horizontal page break
string url = "http://api.aspose.com/v1.1/cells/" + workbookName + "/worksheets/" + sheetName + "/horizontalpagebreaks?row=" + idxRow;
//Call PUT method with the following parameters
string data = "";
string contentType = "application/json";
using (HttpWebResponse response = _helper.CallPut(url, data, contentType))
{
Assert.AreEqual(response.StatusCode, HttpStatusCode.OK);
}
在工作表中插入垂直分页符
以下示例代码说明了如何使用 Aspose.Cells for Cloud API 在工作表中插入垂直分页符。
//Your workbook and sheet name
string workbookName = "sampleExcelPageBreaks.xlsx";
string sheetName = "Sheet1";
//Column index to insert vertical page break
int idxCol = 9;
//URL to insert vertical page break
string url = "http://api.aspose.com/v1.1/cells/" + workbookName + "/worksheets/" + sheetName + "/verticalpagebreaks?column=" + idxCol;
//Call PUT method with the following parameters
string data = "";
string contentType = "application/json";
using (HttpWebResponse response = _helper.CallPut(url, data, contentType))
{
Assert.AreEqual(response.StatusCode, HttpStatusCode.OK);
}
删除工作表内的水平分页符
以下示例代码说明了如何使用 Aspose.Cells for Cloud API 删除工作表内的水平分页符。
//Your workbook and sheet name
string workbookName = "sampleExcelPageBreaks.xlsx";
string sheetName = "Sheet1";
//Your horizontal page break index
int idxHorizontalPageBreak = 0;
//URL to Delete Horizontal Page Break
string url = "http://api.aspose.com/v1.1/cells/" + workbookName + "/worksheets/" + sheetName + "/horizontalpagebreaks/" + idxHorizontalPageBreak;
//Call Delete method with the following parameters
string data = "";
string contentType = "application/json";
using (HttpWebResponse response = _helper.CallDelete(url, data, contentType))
{
Assert.AreEqual(response.StatusCode, HttpStatusCode.OK);
}
删除工作表内的垂直分页符
以下示例代码说明了如何使用 Aspose.Cells for Cloud API 删除工作表内的垂直分页符。
//Your workbook and sheet name
string workbookName = "sampleExcelPageBreaks.xlsx";
string sheetName = "Sheet1";
//Your vertical page break index
int idxVerticalPageBreak = 0;
//URL to Delete Vertical Page Break
string url = "http://api.aspose.com/v1.1/cells/" + workbookName + "/worksheets/" + sheetName + "/verticalpagebreaks/" + idxVerticalPageBreak;
//Call Delete method with the following parameters
string data = "";
string contentType = "application/json";
using (HttpWebResponse response = _helper.CallDelete(url, data, contentType))
{
Assert.AreEqual(response.StatusCode, HttpStatusCode.OK);
}
工作表的自动调整单列
以下示例代码说明了如何自动调整工作表的单列。它自动适应C栏.
//Your workbook and sheet name
string workbookName = "sampleAutoFit.xlsx";
string sheetName = "Sheet1";
//URL to auto fit the column C
string url = "http://api.aspose.com/v1.1/cells/" + workbookName + "/worksheets/" + sheetName + "/autofitcolumns?firstColumn=2&lastColumn=2";
//Call POST method with the above URL
using (HttpWebResponse response = _helper.CallPost(url, string.Empty, contentType))
{
Assert.AreEqual(response.StatusCode, HttpStatusCode.OK);
}
自动调整工作表的多列
以下示例代码说明了如何自动调整工作表的多列。它自动适应A、B、C、D、E 和 F 列.
//Your workbook and sheet name
string workbookName = "sampleAutoFit.xlsx";
string sheetName = "Sheet1";
//URL to auto fit the columns A, B, C, D, E and F
string url = "http://api.aspose.com/v1.1/cells/" + workbookName + "/worksheets/" + sheetName + "/autofitcolumns?firstColumn=0&lastColumn=5";
//Call POST method with the above URL
using (HttpWebResponse response = _helper.CallPost(url, string.Empty, contentType))
{
Assert.AreEqual(response.StatusCode, HttpStatusCode.OK);
}
自动调整单行工作表
以下示例代码说明了如何自动调整工作表的单行。它自动适应第二排.
//Your workbook and sheet name
string workbookName = "sampleAutoFitRow.xlsx";
string sheetName = "Sheet1";
//URL to auto fit the 2nd row
string url = "http://api.aspose.com/v1.1/cells/" + workbookName + "/worksheets/" + sheetName + "/autofitrow?rowIndex=1&firstColumn=1&lastColumn=10";
//Call POST method with the above URL
using (HttpWebResponse response = _helper.CallPost(url, string.Empty, contentType))
{
Assert.AreEqual(response.StatusCode, HttpStatusCode.OK);
}
自动调整多行工作表
以下示例代码说明了如何自动调整工作表的多行。它自动调整从第 2 行到第 8 行的多行。
//Your workbook and sheet name
string workbookName = "sampleAutoFitRows.xlsx";
string sheetName = "Sheet1";
//URL to auto fit the multiple rows from 2nd to 8th
string url = "http://api.aspose.com/v1.1/cells/" + workbookName + "/worksheets/" + sheetName + "/autofitrows?onlyAuto=False&startRow=1&endRow=7";
//Call POST method with the above URL
using (HttpWebResponse response = _helper.CallPost(url, string.Empty, contentType))
{
Assert.AreEqual(response.StatusCode, HttpStatusCode.OK);
}