LockStrength (Record function): Difference between revisions

From m204wiki
Jump to navigation Jump to search
m (1 revision)
mNo edit summary
Line 1: Line 1:
{{Template:Record:LockStrength subtitle}}
{{Template:Record:LockStrength subtitle}}
 
This method returns a <var>LockStrength</var> enumeration
This non-settable property returns a <var>LockStrength</var> enumeration
to indicate the locking of the <var>Record</var> object.
that indicates the locking of the <var>Record</var> object.
==Syntax==
==Syntax==
{{Template:Record:LockStrength syntax}}
{{Template:Record:LockStrength syntax}}

Revision as of 00:32, 27 April 2011

Return lock strength of Record (Record class)

This method returns a LockStrength enumeration to indicate the locking of the Record object.

Syntax

%lockStrength = record:LockStrength

Syntax terms

%ls A declared enumeration object of type LockStrength to contain the returned value of %rec's locking. 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

  • You can use this property to display the locking for a given Record object. Note the use of the ToString enumeration method to print the locking value:

    %grouprec = new(1, 'TESTPROC', %e) print %grouprec:lockstrength:toString

  • For more information about enumerations, see Enumerations.

See also