CurrentRecord (Record function): Difference between revisions
Jump to navigation
Jump to search
mNo edit summary |
mNo edit summary |
||
Line 1: | Line 1: | ||
{{Template:Record:CurrentRecord subtitle}} | {{Template:Record:CurrentRecord subtitle}} | ||
<var>CurrentRecord</var> is a shared function. | |||
==Syntax== | ==Syntax== | ||
{{Template:Record:CurrentRecord syntax}} | {{Template:Record:CurrentRecord syntax}} |
Revision as of 00:39, 27 April 2011
Create a Record object from current record in For loop or Recordset (Record class)
CurrentRecord is a shared function.
Syntax
%record = [%(Record In filOrGrp name):]CurrentRecord[( [lockStrength], - [LoopLockStrength= lockStrength])] Throws RecordLockingConflict
Syntax terms
%(Record) | Since this is a shared method, this method object can be the class name, Record, in parentheses, or it can be a declared Record object variable, which must have the same file or group context as the For loop within which CurrentRecord is invoked.
Under Sirius Mods version 6.8 and later, the CurrentRecord method does not have to be preceded by any method object, since it acts like a constructor. For more information about shared methods, see "Shared class members". |
---|---|
lockstr | The value of a Lockstrength enumeration: None, Share, or Exclusive. These correspond to standard Model 204 record-locking levels, as described below. The default lock strength of the new Record object is Share.
|
LoopLockStrength | The lock strength to be used for loops on the Record. This is an optional, name required, parameter, and it defaults to None. See "LoopLockStrength for Records". This parameter is available in Sirius Mods 7.0 and later. |
Usage notes
- CurrentRecord must be invoked from inside a record loop that has the same file or group context as declared for the Record object variable.
- Under Sirius Mods version 6.8 and later, the CurrentRecord method name does not have to be preceded by the class name or by an object variable.
- For more information and examples, see "Using CurrentRecord to instantiate a Record object".