Message 1 of 1
c# and date property
Not applicable
04-24-2017
11:23 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
How i can get date value from property?
I can get string type, but other type throw "COM..." exception.
public DateTime CreationDate
{
get
{
try
{
return Sets["Design Tracking Properties"]
[Inventor.PropertiesForDesignTrackingPropertiesEnum.kCreationDateDesignTrackingProperties].Value;
}
catch
{ ... }
}
}