InformationRegisterRecordSet.<Information register name>.Modified

Syntax:

Modified()

Returned value:

Type: Boolean.
True - records are changed; False - otherwise.

Description:

Defines whether records in the set were changed after the last reading or writing.

Availability:

Server, thick client, external connection, Mobile application (server).

Note:

The method does not allow you to determine whether corresponding records were changed by other users.

Example:

If RecordsSet.Modified() Then
    // Write the recordset.
    Try
        RecordsSet.Write();
    Except
        DoMessageBox("Can't write:
            |"
 + ErrorDescription());
        Cancel = True;
    EndTry;
EndIf
;


    

1C:Enterprise Developer's Community