Click or drag to resize

MapperDetailSetTabIndex Method

Automatically set tab indices for the page's controls (even those not bound to a field).

Namespace:  NetQuarry.Data.WebMappers
Assembly:  EAP.WebMappers (in EAP.WebMappers.dll) Version: 2.0.0.0 (4.6.8.0)
Syntax
protected ArrayList SetTabIndex(
	ControlCollection ctrls,
	int parentTop,
	int parentLeft,
	TabOrderAttrs flags,
	bool recursing
)

Parameters

ctrls
Type: System.Web.UIControlCollection
The collection of controls for which to set tab indices.
parentTop
Type: SystemInt32
The parent control's top position.
parentLeft
Type: SystemInt32
The parent control's left position.
flags
Type: NetQuarry.DataTabOrderAttrs
Flags controlling how tab indices are assigned.
recursing
Type: SystemBoolean
Indicates whether this call is recursive. Outside callers should always pass False for this parameter.

Return Value

Type: ArrayList
On recursive calls, the list of controls with each control's tab index calculation on recursion. The return value is not meaningful to the ultimate caller.
Remarks
This method calls itself recursively in order to implement the tab ordering algorithm.
See Also