|
Description
|
Returns/sets the cumulative editing days for the drawing.
|
Syntax Visual Basic
|
[form.]DXFReader.TotalEditTimeDays[ = Value&]
|
|
Visual C++
|
long DXFReader.GetTotalEditTimeDays(); void DXFReader.SetTotalEditTimeDays(long nNewValue);
|
|
Delphi
|
property TotalEditTimeDays: Integer;
|
|
C#
|
int DXFReader.TotalEditTimeDays;
|
|
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
|
Long
|