Description
Set the interval's start and the stop times changes the interval's state to explicit. Exception is thrown if specified start time is greater than stop time.
Syntax
| [Visual Basic .NET] |
|---|
Public Sub SetExplicitInterval( _
ByVal Start As System.Object, _
ByVal Stop As System.Object _
) As
|
| [C#] |
|---|
public void SetExplicitInterval(
System.Object Start,
System.Object Stop
);
|
| [Managed C++] |
|---|
public: void SetExplicitInterval(
VARIANT Start,
VARIANT Stop
);
|
| [Java] |
|---|
public void setExplicitInterval(
VARIANT Start,
VARIANT Stop
);
|
| [Unmanaged C++] |
|---|
public: HRESULT SetExplicitInterval(
VARIANT Start,
VARIANT Stop
);
|
Parameters
See Also
Example
Sets the start and stop epoch time with smart epochs.
| [C#] |
|---|
smartInterval.SetExplicitInterval("Today", "Tomorrow");
|
|
Sets the start and stop epoch time with smart epochs.
| [Visual Basic .NET] |
|---|
smartInterval.SetExplicitInterval("Today", "Tomorrow")
|
|