'Declaration
Public Property Time As Date
'Usage
Dim instance As AEEventData Dim value As Date instance.Time = value value = instance.Time
public DateTime Time {get; set;}
'Declaration
Public Property Time As Date
'Usage
Dim instance As AEEventData Dim value As Date instance.Time = value value = instance.Time
public DateTime Time {get; set;}
Exception | Description |
---|---|
System.ArgumentException | One of the arguments provided to a method is not valid. This is a usage error, i.e. it will never occur (the exception will not be thrown) in a correctly written program. Your code should not catch this exception. |
For example, if the event notification is for acknowledgment of a condition, this would be the time that the condition became acknowledged.
If you are using VBA in Excel, beware that it reduces the precision of date/times from OLE Automation to seconds. In order to achieve milliseconds precision from VBA in Excel, use the TimeDouble property instead.