Determines if focus applies to whole row only or to individual row items.

Usage

Set_Property(OLECtrlEntID, "OLE.AllowSubItemFocus", Boolean)

Values

[True | False]

Default: False

Remarks

The AllowSubitemFocus property establishes how focus enteres into a report table row. By default, this property is false and focus applies to the entire row. However, if you set this to true, then cells get focus and the user the navigate from cell to cell rather than row to row.

Example

// Let the user navigate from cell to cell rather than row to row 
Set_Property(@Window:".OLE_REPORTTABLE", "OLE.AllowSubItemFocus", 1)
  • No labels