Provides access to methods and properties used to identify and manage temporal playback settings.
Members
Name | Description | |
---|---|---|
Add | Adds a new temporal operator. | |
AsDate | Temporal information as a date field. | |
AsInterval | Temporal information as an interval value. | |
AsString | Temporal information as a string. | |
IntervalQuantity | Number of intervals between events. | |
IntervalUnits | Units used for interval. | |
Reset | Resets the temporal operator. | |
SetDateTime | Sets the value for date and time information. | |
SetInterval | Sets the playback time interval between events. | |
Subtract | Subtracts a temporal operator. | |
Type | The type of temporal data used. | |
Value | Value of temporal information. |
ITemporalOperator.Add Method
Adds a new temporal operator.
Public Sub Add ( _
ByVal piOtherOperator As ITemporalOperator _
)
public void Add (
ITemporalOperator piOtherOperator
);
ITemporalOperator.AsDate Property
Temporal information as a date field.
Public ReadOnly Property AsDate As Object
public object AsDate {get;}
ITemporalOperator.AsInterval Property
Temporal information as an interval value.
Public Function get_AsInterval ( _
ByVal enumUnits As enumTemporalOperatorUnits _
) As Object
public object get_AsInterval (
enumTemporalOperatorUnits enumUnits
);
ITemporalOperator.AsString Property
Temporal information as a string.
Public Function get_AsString ( _
ByVal bstrFormat As String _
) As String
public string get_AsString (
string bstrFormat
);
ITemporalOperator.IntervalQuantity Property
Number of intervals between events.
Public ReadOnly Property IntervalQuantity As Double
public double IntervalQuantity {get;}
ITemporalOperator.IntervalUnits Property
Units used for interval.
Public ReadOnly Property IntervalUnits As enumTemporalOperatorUnits
public enumTemporalOperatorUnits IntervalUnits {get;}
ITemporalOperator.Reset Method
Resets the temporal operator.
Public Sub Reset ( _
)
public void Reset (
);
ITemporalOperator.SetDateTime Method
Sets the value for date and time information.
Public Sub SetDateTime ( _
ByVal lYear As Integer, _
ByVal lMonth As Short, _
ByVal lDayOfMonth As Short, _
ByVal lHour As Short, _
ByVal lMinute As Short, _
ByVal lSecond As Short, _
ByVal lMillisecond As Short _
)
public void SetDateTime (
int lYear,
short lMonth,
short lDayOfMonth,
short lHour,
short lMinute,
short lSecond,
short lMillisecond
);
ITemporalOperator.SetInterval Method
Sets the playback time interval between events.
Public Sub SetInterval ( _
ByVal dQuantity As Double, _
ByVal enumUnits As enumTemporalOperatorUnits _
)
public void SetInterval (
double dQuantity,
enumTemporalOperatorUnits enumUnits
);
ITemporalOperator.Subtract Method
Subtracts a temporal operator.
Public Sub Subtract ( _
ByVal piOtherOperator As ITemporalOperator _
)
public void Subtract (
ITemporalOperator piOtherOperator
);
ITemporalOperator.Type Property
The type of temporal data used.
Public ReadOnly Property Type As enumTemporalOperatorType
public enumTemporalOperatorType Type {get;}
ITemporalOperator.Value Property
Value of temporal information.
Public ReadOnly Property Value As Object
public object Value {get;}
Classes that implement ITemporalOperator
Classes | Description |
---|