DataSelection.Get
Syntax:
Returned value:
If the current position of the selection corresponds to a deleted object, a ObjectDeletion type value is returned. If the selection position is located before the first element or after the last element, a Undefined value is returned.
Description:
Availability:
Example:
Sel = ExchangePlans.SelectChanges(Recipient, MessageNo); While Sel.Next() Do Object = Sel.Get(); WriteXML(Record, Object); EndDo; |