CoreCreatedOn Method (IReadOnlyItem) |
Namespace: Innovator.Client
// If the part was created after 2016-01-01, put the name of the creator in the description if (comp.CreatedOn().AsDateTime(DateTime.MaxValue) > new DateTime(2016, 1, 1)) { edits.Property("description").Set("Created by: " + comp.CreatedById().KeyedName().Value); }