Description
Gets or sets the end time of the video in seconds. Changing the
End Time property also changes the
End Frame property to the frame in the video that corresponds to the specified time.
Property type
Read-write property
Syntax
[Visual Basic .NET] |
---|
Public Property EndTime() As Double
|
[C#] |
---|
public double EndTime {get; set;}
|
[Managed C++] |
---|
public: __property double get_EndTime(); public: __property void set_EndTime(
double
);
|
[Unmanaged C++] |
---|
public: HRESULT get_EndTime(
double * pRetVal
);
public: HRESULT put_EndTime(
double EndTime
);
|
[Java] |
---|
public double getEndTime();
public void setEndTime(
double
);
|
[Python - STK API ] |
---|
@property
def EndTime(self) -> float:
@EndTime.setter
def EndTime(self, EndTime:float) -> None:
|
See Also