Description
Gets or sets whether the video will loop when it reaches its last frame when the
Playback property is set to
RealTime.
Property type
Read-write property
Syntax
[Visual Basic .NET] |
---|
Public Property Loop() As Boolean
|
[C#] |
---|
public bool Loop {get; set;}
|
[Managed C++] |
---|
public: __property bool get_Loop(); public: __property void set_Loop(
bool
);
|
[Unmanaged C++] |
---|
public: HRESULT get_Loop(
VARIANT_BOOL * pRetVal
);
public: HRESULT put_Loop(
VARIANT_BOOL Loop
);
|
[Java] |
---|
public bool getLoop();
public void setLoop(
bool
);
|
[Python - STK API ] |
---|
@property
def Loop(self) -> bool:
@Loop.setter
def Loop(self, Loop:bool) -> None:
|
See Also