Compute the data and return just the indicated data elements; time-dependent data providers require an interval and a time step.
[Visual Basic .NET] |
---|
Public Function ExecElements( _ ByVal StartTime As System.Object, _ ByVal StopTime As System.Object, _ ByVal StepTime As Double, _ ByVal ElementNames As System.Array _ ) As IAgDrResult |
[C#] |
---|
public IAgDrResult ExecElements( System.Object StartTime, System.Object StopTime, double StepTime, System.Array ElementNames ); |
[Managed C++] |
---|
public: IAgDrResult^ ExecElements( VARIANT StartTime, VARIANT StopTime, double StepTime, System::Array ^ ElementNames ); |
[Unmanaged C++] |
---|
public: HRESULT ExecElements( VARIANT StartTime, VARIANT StopTime, double StepTime, SAFEARRAY * * ElementNames, IAgDrResult ** ppIAgDrResult ); |
[Java] |
---|
public IAgDrResult execElements( AgVariant StartTime, AgVariant StopTime, double StepTime, AgSafeArray ElementNames ); |
[Python - STK API ] |
---|
def ExecElements(self, StartTime:typing.Any, StopTime:typing.Any, StepTime:float, ElementNames:list) -> "IAgDrResult": |
- StartTime
- The start time.
- StopTime
- The stop time.
- StepTime
- The step value.
- ElementNames
- An array of element names.
IAgDrResult.