Description
Gets or sets the start frame of the video. Changing the
Start Frame property also changes the
Start Time property to the time in the video that corresponds to the specified frame.
Property type
Read-write property
Syntax
[Visual Basic .NET] |
---|
Public Property StartFrame() As Integer
|
[C#] |
---|
public int StartFrame {get; set;}
|
[Managed C++] |
---|
public: __property int get_StartFrame(); public: __property void set_StartFrame(
int
);
|
[Unmanaged C++] |
---|
public: HRESULT get_StartFrame(
int * pRetVal
);
public: HRESULT put_StartFrame(
int StartFrame
);
|
[Java] |
---|
public Integer getStartFrame();
public void setStartFrame(
Integer
);
|
[Python - STK API ] |
---|
@property
def StartFrame(self) -> int:
@StartFrame.setter
def StartFrame(self, StartFrame:int) -> None:
|
See Also