|
Description
|
Returns/sets the cumulative editing time for the drawing.
|
Syntax Visual Basic
|
[form.]DXFReader.TotalEditTime[ = Date]
|
|
Visual C++
|
DATE DXFReader.GetTotalEditTime(); void DXFReader.SetTotalEditTime(DATE NewValue);
|
|
Delphi
|
property TotalEditTime: TDateTime;
|
|
C#
|
DateTime DXFReader.TotalEditTime;
|
|
Remarks
|
The following example shows how to display the total editing time:
With DXFReader1
MsgBox .TotalEditTimeDays + .TotalEditTime
End With
This property isn't showed in Property Browser but is showed in the Object Browser.
|
|
Data Type
|
Date
|