04-29-2020
11:11 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
04-29-2020
11:11 AM
Here is a simple example of creating a Date type Custom iProperty.
Dim oDoc As Document = ThisApplication.ActiveDocument
Dim oPropName As String = "Date Sample"
Dim oPropValue As Date = FormatDateTime(Now,DateFormat.GeneralDate)
iProperties.Value("Custom",oPropName) = oPropValue
Wesley Crihfield
(Not an Autodesk Employee)