Click or drag to resize

APIExcelWrite Method

Writes to the specified cell in the Excel file.

Namespace:  AppRobotic
Assembly:  AppRobotic (in AppRobotic.dll) Version: 15.21.3.21 (15.21.03.21)
Syntax
C#
public string ExcelWrite(
	Object PathToExcelFile,
	Object SheetName,
	Object TextToWrite,
	Object RowNumber,
	Object ColumnNumber
)

Parameters

PathToExcelFile
Type: SystemObject
File path to the Excel file.
SheetName
Type: SystemObject
Specify either a blank ("") for 1st found Sheet in the Workbook by default, or the Sheet name.
TextToWrite
Type: SystemObject
Specify text to be written to the Excel cell.
RowNumber
Type: SystemObject
Row of cell to write to.
ColumnNumber
Type: SystemObject
Column of cell to write to.

Return Value

Type: String
Returns string containing 'success' or error message.
See Also