ChartOfCalculationTypesObject.<Chart of Calculation Types name>.Modified

Syntax:

Modified()

Returned value:

Type: Boolean.
True indicates the object was changed; otherwise it is False.

Description:

Indicates whether an object was changed after being read from the database.

Availability:

Server, thick client, external connection.

Note:

The method does not indicate whether or not the object was changed by other users.

Example:

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


    

1C:Enterprise Developer's Community