/// <summary>
 /// Initializes a new instance of the <see cref="GetXlsxCellByIdentifierResponse" /> class.
 /// </summary>
 /// <param name="successful">True if successful, false otherwise.</param>
 /// <param name="cell">Requested Cell in the Excel XLSX document.</param>
 public GetXlsxCellByIdentifierResponse(bool?successful = default(bool?), XlsxSpreadsheetCell cell = default(XlsxSpreadsheetCell))
 {
     this.Successful = successful;
     this.Cell       = cell;
 }
Exemplo n.º 2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="XlsxSpreadsheetColumn" /> class.
 /// </summary>
 /// <param name="path">The Path of the location of this object; leave blank for new rows.</param>
 /// <param name="headingCell">Heading cell for this column.</param>
 public XlsxSpreadsheetColumn(string path = default(string), XlsxSpreadsheetCell headingCell = default(XlsxSpreadsheetCell))
 {
     this.Path        = path;
     this.HeadingCell = headingCell;
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="SetXlsxCellByIdentifierRequest" /> class.
 /// </summary>
 /// <param name="inputFileBytes">Optional: Bytes of the input file to operate on.</param>
 /// <param name="inputFileUrl">Optional: URL of a file to operate on as input.  This can be a public URL, or you can also use the begin-editing API to upload a document and pass in the secure URL result from that operation as the URL here (this URL is not public)..</param>
 /// <param name="worksheetToUpdate">Optional; Worksheet (tab) within the spreadsheet to update; leave blank to default to the first worksheet.</param>
 /// <param name="cellIdentifier">The Excel cell identifier (e.g. A1, B2, C33, etc.) of the cell to update.</param>
 /// <param name="cellValue">New Cell value to update/overwrite into the Excel XLSX spreadsheet.</param>
 public SetXlsxCellByIdentifierRequest(byte[] inputFileBytes = default(byte[]), string inputFileUrl = default(string), XlsxWorksheet worksheetToUpdate = default(XlsxWorksheet), string cellIdentifier = default(string), XlsxSpreadsheetCell cellValue = default(XlsxSpreadsheetCell))
 {
     this.InputFileBytes    = inputFileBytes;
     this.InputFileUrl      = inputFileUrl;
     this.WorksheetToUpdate = worksheetToUpdate;
     this.CellIdentifier    = cellIdentifier;
     this.CellValue         = cellValue;
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="SetXlsxCellRequest" /> class.
 /// </summary>
 /// <param name="inputFileBytes">Optional: Bytes of the input file to operate on.</param>
 /// <param name="inputFileUrl">Optional: URL of a file to operate on as input.  This can be a public URL, or you can also use the begin-editing API to upload a document and pass in the secure URL result from that operation as the URL here (this URL is not public)..</param>
 /// <param name="worksheetToUpdate">Optional; Worksheet (tab) within the spreadsheet to update; leave blank to default to the first worksheet.</param>
 /// <param name="rowIndex">0-based index of the row, 0, 1, 2, ... to set.</param>
 /// <param name="cellIndex">0-based index of the cell, 0, 1, 2, ... in the row to set.</param>
 /// <param name="cellValue">New Cell value to update/overwrite into the Excel XLSX spreadsheet.</param>
 public SetXlsxCellRequest(byte[] inputFileBytes = default(byte[]), string inputFileUrl = default(string), XlsxWorksheet worksheetToUpdate = default(XlsxWorksheet), int?rowIndex = default(int?), int?cellIndex = default(int?), XlsxSpreadsheetCell cellValue = default(XlsxSpreadsheetCell))
 {
     this.InputFileBytes    = inputFileBytes;
     this.InputFileUrl      = inputFileUrl;
     this.WorksheetToUpdate = worksheetToUpdate;
     this.RowIndex          = rowIndex;
     this.CellIndex         = cellIndex;
     this.CellValue         = cellValue;
 }