Description
Sets a start of the interval using specified epoch component.
Syntax
Parameters
See Also
Example
Configure the start and stop epoch time with smart epochs.
[C#] |
---|
smartInterval.State = AgECrdnSmartIntervalState.eCrdnSmartIntervalStateStartStop;
IAgCrdnEventSmartEpoch accessStartEpoch = smartInterval.GetStartEpoch();
accessStartEpoch.SetImplicitTime(startEventEpoch);
smartInterval.SetStartEpoch(accessStartEpoch);
IAgCrdnEventSmartEpoch accessStopEpoch = smartInterval.GetStopEpoch();
accessStopEpoch.SetImplicitTime(stopEventEpoch);
smartInterval.SetStopEpoch(accessStopEpoch);
|
|
Configure the start and stop epoch time with smart epochs.
[Visual Basic .NET] |
---|
smartInterval.State = AgECrdnSmartIntervalState.eCrdnSmartIntervalStateStartStop
Dim accessStartEpoch As IAgCrdnEventSmartEpoch = smartInterval.GetStartEpoch()
accessStartEpoch.SetImplicitTime(startEventEpoch)
smartInterval.SetStartEpoch(accessStartEpoch)
Dim accessStopEpoch As IAgCrdnEventSmartEpoch = smartInterval.GetStopEpoch()
accessStopEpoch.SetImplicitTime(stopEventEpoch)
smartInterval.SetStopEpoch(accessStopEpoch)
|
|