FocusVisible - property of the PmgWTable object
Description:
Enable to switch off default frame of focused cell.
The cell with focus is defined by properties
FocusedCol and
FocusedRow.
This is handy if the visibility of the cell is to be defined by the designer himself.
Syntax:
Boolean FocusVisible
Values:
true (default) - Frame is on
false - Frame is off
Note:
Property access
for read and write.
This property is also functional in
Web panels.
Example:
JavaScriptVBScriptSelect and copy to clipboard
var oTable = pMe.Items("/Table");
var bFocusVisible = oTable.FocusVisible;
// Reading from the property
oTable.FocusVisible = true;
// Writing into the property
Dim oTable
Set oTable = pMe.Items("/Table")
Dim bFocusVisible
bFocusVisible = oTable.FocusVisible
' Reading from the property
oTable.FocusVisible = true
' Writing into the property