I have use 1.x version AddRecord in code behind, which the record is marked as "created" when retrieved through "Store.getChangedData()". Are there any method to mark the record as "created" for version 4.x?

// 1.x version 
      Store.AddRecord(record);

// 4.x version - newly added record is not mark as 'created'
      Store.Add(record);
Thanks in advance!