LastEditAt Property (InvTransferSource)
- Last UpdatedNov 06, 2025
- 1 minute read
The LastEditBy property contains the date and time when the inventory record was added or last modified. This property is used for optimistic concurrency control.
'Declaration
Public Property LastEditAt As Nullable(Of Date)
'Usage
Dim instance As InvTransferSource
Dim value As Nullable(Of Date)
instance.LastEditAt = value
value = instance.LastEditAt
public Nullable<DateTime> LastEditAt {get; set;}