IsCellFocused - method of the PmgWTable object
Description:
Detects whether some cells from a table (except fixed part) has the focus.
Syntax:
Boolean IsCellFocused()
Return value:
true - If some cells from a table (except fixed part) has the focus.
false - Otherwise
Example:
JavaScriptVBScriptSelect and copy to clipboard
var oTable = pMe.Items("/Table");
var bCellFocused = oTable.IsCellFocused();
Dim oTable
Set oTable = pMe.Items("/Table")
Dim bCellFocused
bCellFocused = oTable.IsCellFocused()