VarRecord SelectAll() Method

Can force all fields to be examined for changes (or ignored) on the next Update(), overriding the effect of the Field method Select().

Function Signature

 void SelectAll( [selectFlag] )

Parameters

Parameter Type Description

selectFlag

bool

Optional. Defaults to true if not supplied. The value to which all Fields' select flags will be set.

Return

Type Description

None

Technical Details

SBM ModScript version: 11.3

Notes

Each Field object on the list has a "select flag" that indicates whether it will be skipped for performance reasons on the next Update(). If a Field's value is known not to have changed, it is often deselected. SelectAll() sets all fields' select flags to true or false, causing all fields to be examined or ignored, respectively.

Related Topics

VarFieldList