DataSelection.Reset

Syntax:

Reset()

Description:

Places the selection at the beginning.

Availability:

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

Note:

When the Next() method is called up, the selection is positioned at the first record.

Example:

Sel.Reset();
While 
Sel.Next() Do
    Object = Sel.Get();
    WriteXML(Record, Object);
EndDo
;


    

1C:Enterprise Developer's Community