LoopLockStrength (Record property)

From m204wiki
Revision as of 20:34, 15 April 2011 by JAL2 (talk | contribs) (Created page with "<span class="pageSubtitle"><section begin=dpl_desc/><section end=dpl_desc/></span> LoopLockStrength property <p> <var>LoopLockStrength</var> is a memb...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

<section begin=dpl_desc/><section end=dpl_desc/>

LoopLockStrength is a member of the Record class.

This settable property returns a LockStrength enumeration that indicates the minimum lock strength for records processed in For Record loops on the Record object. For more information see "LoopLockStrength for Records".

Syntax

%ls = %rec:LoopLockStrength %rec:LoopLockStrength = %ls

Syntax Terms

%ls A declared enumeration object of type LockStrength to contain the returned value or to set the new value of %rec's minimum lock strength on records in a loop on %rec. The enumeration values (shared properties) that may be returned (None, Share, or Exclusive), correspond to standard Model 204 record-locking levels, as described in "New (Record constructor)".
%rec An instantiated Record object variable.

Usage Notes

  • If the returned locking value is assigned to an enumeration variable, use the ToString enumeration method to print the value string.
  • For more information about enumerations, see Enumerations.