InformationRegisterRecordManager.<Information register name>
Properties:
<Common attribute name>
<Dimension name>
<Resource name>
Period
Methods:
Fill
GetForm
Modified
Read
Selected
Write
Description:
Used for interactive work with the information register record.
Information register records are accessed (for reading and writing) by the InformationRegisterRecordSet.
Availability:
Example:
Rate = InformationRegisters.ExchangeRates.CreateRecordManager(); Rate.Currency = SelCurrency; Rate.Period = CurrentDate(); Rate.Read(); If Not Rate.Selected() Then Rate.Period = CurrentDate(); Rate.Currency = SelCurrency; Rate.Rate = 41.35; Rate.Repetition = 1; EndIf; If InputNumber(Rate.Rate, "Enter the rate for today",15,5) Then Rate.Write(); EndIf; |
See also:
InformationRegisterManager, method CreateRecordManager
Information register record form extension, property CopyingObjectParameter
Managed form extension for information register records, event OnWriteAtServer
Managed form extension for information register records, event BeforeWriteAtServer
Managed form extension for information register records, event AfterWriteAtServer
Managed form extension for information register records, event OnReadAtServer