Method TypeCell
Types into the cell with the matched input textUsage
Function TypeCell(
Integer Row,
Integer Column,
String TextToType
)
Parameters
Row
Type: Integer
Row number
Column
Type: Integer
Column number
TextToType
Type: String
The text to type into the cell
Returns
True if operation is successful; otherwise, false
Example
VBScript
emailFieldRow = "Email"
tableRowNumber = Application("Demo").View("DemoView").Table("DemoTable").FindRow(emailFieldRow)
Application("Demo").View("DemoView").Table("DemoTable").TypeCell tableRowNumber, 2, "[email protected]"
JavaScript
var emailFieldRow = "Email";
var tableRowNumber = Application("Demo").View("DemoView").Table("DemoTable").FindRow(emailFieldRow);
Application("Demo").View("DemoView").Table("DemoTable").TypeCell(tableRowNumber, 2, "[email protected]");