FocusedCellText - property of the PmgWTable object
Description:
Value of focused cell (the current cell that has the focus).
Syntax:
String FocusedCellText
Note:
Property access
for read and write.
In order to make the modification visible on writing, it is necessary to call the
Draw method.
This property is also functional in
Web panels.
Example:
JavaScriptVBScriptSelect and copy to clipboard
var oTable = pMe.Items("/Table");
var sFocusedCellText = oTable.FocusedCellText;
// Reading from the property
oTable.FocusedCellText = 825;
// Writing into the property
Dim oTable
Set oTable = pMe.Items("/Table")
Dim sFocusedCellText
sFocusedCellText = oTable.FocusedCellText
' Reading from the property
oTable.FocusedCellText = 825
' Writing into the property